From 8403352a02d8e22abdb6f30c8d8c3f6db5638072 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 24 Mar 2025 17:17:02 -0400 Subject: [PATCH] Tweak hello world --- koans.tm | 2 +- lesson-templates/lesson-01-hello-world.tm | 7 +++++++ lesson-templates/lesson-01.tm | 5 ----- 3 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 lesson-templates/lesson-01-hello-world.tm delete mode 100644 lesson-templates/lesson-01.tm diff --git a/koans.tm b/koans.tm index 118e87b..98c5494 100755 --- a/koans.tm +++ b/koans.tm @@ -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"), ] diff --git a/lesson-templates/lesson-01-hello-world.tm b/lesson-templates/lesson-01-hello-world.tm new file mode 100644 index 0000000..5a157a6 --- /dev/null +++ b/lesson-templates/lesson-01-hello-world.tm @@ -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") diff --git a/lesson-templates/lesson-01.tm b/lesson-templates/lesson-01.tm deleted file mode 100644 index 5794842..0000000 --- a/lesson-templates/lesson-01.tm +++ /dev/null @@ -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")