mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 18:31:43 +03:00
13 lines
125 B
Idris
13 lines
125 B
Idris
module Main
|
|
|
|
{-- comment 1 --}
|
|
|
|
someFunction : IO ()
|
|
|
|
{-- comment 2 --}
|
|
|
|
main : IO ()
|
|
main = do
|
|
someFunction
|
|
pure ()
|