This commit is contained in:
Bruce Hill 2025-03-24 18:12:39 -04:00
parent 6efbc4b120
commit 39787ee739
2 changed files with 41 additions and 7 deletions

View File

@ -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)

View 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!"