Tweak hello world
This commit is contained in:
parent
c2aa7b98c0
commit
8403352a02
2
koans.tm
2
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"),
|
||||
]
|
||||
|
||||
|
7
lesson-templates/lesson-01-hello-world.tm
Normal file
7
lesson-templates/lesson-01-hello-world.tm
Normal 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")
|
@ -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")
|
Loading…
Reference in New Issue
Block a user