From e0bde449537da0f66736329802d470347d4bbe73 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 25 Mar 2025 17:15:27 -0400 Subject: [PATCH] Add more explanation --- lesson-templates/lesson-01-hello-world.tm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lesson-templates/lesson-01-hello-world.tm b/lesson-templates/lesson-01-hello-world.tm index 5a157a6..6d2173d 100644 --- a/lesson-templates/lesson-01-hello-world.tm +++ b/lesson-templates/lesson-01-hello-world.tm @@ -1,7 +1,11 @@ # 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")