9 lines
133 B
Plaintext
9 lines
133 B
Plaintext
module Main where
|
|
|
|
import Prelude
|
|
|
|
import Effect (Effect)
|
|
import Effect.Console (log)
|
|
|
|
main :: Effect Unit
|
|
main = log "hello world" |