Skip to main content
Module

x/deno_elm_compiler/fixtures/Main.elm

A Deno wrapper around the Elm compiler
Latest
File
module Main exposing (main)
import Platform

main : Program () {} msgmain = Platform.worker { init = \_ -> ( {}, Debug.log "carl" Cmd.none ) , subscriptions = \_ -> Sub.none , update = \_ model -> ( model, Cmd.none ) }