8 lines
83 B
Agda
8 lines
83 B
Agda
module Hello
|
|
|
|
import Prelude
|
|
|
|
main : IO Unit
|
|
main = do
|
|
putStrLn "hello, world"
|