code / tomo-koans

Lines447 Tomo432 INI9 Markdown6
(11 lines)
1 # This is a simple "Hello world" program.
3 # Lines beginning with a '#' are comments
5 # Programs need a main() function to run:
6 func main()
8 # The language is indentation-sensitive, so indentation matters!
10 # Edit this code so it prints the text "Hello world"
11 say("Goodbye moon")