New test
This commit is contained in:
parent
6efbc4b120
commit
39787ee739
15
koans.tm
15
koans.tm
@ -8,6 +8,14 @@ use commands
|
||||
|
||||
editor := "vim"
|
||||
|
||||
LESSONS := [
|
||||
Lesson((./lessons/lesson-01-hello-world.tm), "Hello World", "Hello world$\n"),
|
||||
Lesson((./lessons/lesson-02-tests.tm), "Testing Code"),
|
||||
Lesson((./lessons/lesson-03-variables.tm), "Variables"),
|
||||
Lesson((./lessons/lesson-04-functions.tm), "Functions"),
|
||||
Lesson((./lessons/lesson-05-basic-types.tm), "Basic Types"),
|
||||
]
|
||||
|
||||
enum TestResult(Success(output:Text), Error(err:Text), WrongOutput(actual:Text, expected:Text)):
|
||||
func print(result:TestResult):
|
||||
when result is Success(s):
|
||||
@ -46,13 +54,6 @@ struct Lesson(file:Path, description:Text, expected_output=none:Text):
|
||||
|
||||
return Success(output)
|
||||
|
||||
LESSONS := [
|
||||
Lesson((./lessons/lesson-01-hello-world.tm), "Hello World", "Hello world$\n"),
|
||||
Lesson((./lessons/lesson-02-tests.tm), "Testing Code"),
|
||||
Lesson((./lessons/lesson-03-variables.tm), "Variables"),
|
||||
Lesson((./lessons/lesson-04-functions.tm), "Functions"),
|
||||
]
|
||||
|
||||
func ask_continue():
|
||||
_ := ask("$\033[2mPress Enter to continue...$\033[m", bold=no)
|
||||
|
||||
|
33
lesson-templates/lesson-05-basic-types.tm
Normal file
33
lesson-templates/lesson-05-basic-types.tm
Normal file
@ -0,0 +1,33 @@
|
||||
# Basic Types
|
||||
|
||||
func main():
|
||||
|
||||
# Tomo has several built-in types, including:
|
||||
# - Int (integer numbers)
|
||||
# - Num (floating-point numbers)
|
||||
# - Text (string values)
|
||||
# - Bool (true or false)
|
||||
|
||||
# Fix these variables so they match the expected values:
|
||||
|
||||
a := 42
|
||||
b := 3.14
|
||||
c := "Tomo"
|
||||
# Boolean values use `yes`/`no`, not `true`/`false`
|
||||
d := yes
|
||||
|
||||
>> a
|
||||
= 99
|
||||
>> b
|
||||
= 2.718
|
||||
>> c
|
||||
= "Hello, world!"
|
||||
>> d
|
||||
= no
|
||||
|
||||
# Text values support interpolation using `$`:
|
||||
name := "Alice"
|
||||
greeting := "Hello, $name!"
|
||||
|
||||
>> greeting
|
||||
= "Hello, Bob!"
|
Loading…
Reference in New Issue
Block a user