tomo-koans/lesson-templates/lesson-01-hello-world.tm
2025-03-25 17:15:27 -04:00

12 lines
293 B
Tcl

# This is a simple "Hello world" program.
# Lines beginning with a '#' are comments
# Programs need a main() function to run:
func main():
# The language is indentation-sensitive, so indentation matters!
# Edit this code so it prints the text "Hello world"
say("Goodbye moon")