Tweak hello world

This commit is contained in:
Bruce Hill 2025-03-24 17:17:02 -04:00
parent c2aa7b98c0
commit 8403352a02
3 changed files with 8 additions and 6 deletions

View File

@ -45,7 +45,7 @@ struct Lesson(file:Path, description:Text, expected_output=none:Text):
return Success(output)
LESSONS := [
Lesson((./lessons/lesson-01.tm), "Getting Started", "Hello world$\n"),
Lesson((./lessons/lesson-01-hello-world.tm), "Hello World", "Hello world$\n"),
Lesson((./lessons/lesson-02.tm), "Working with Text"),
]

View File

@ -0,0 +1,7 @@
# This is a simple "Hello world" program.
# Programs need a main() function to run:
func main():
# Edit this code so it prints the text "Hello world"
say("Goodbye moon")

View File

@ -1,5 +0,0 @@
# This is a simple "Hello world" program.
# Edit it so it prints the text "Hello world":
func main():
say("Goodbye moon")