tomo-koans/lesson-templates/lesson-05-basic-types.tm
2025-03-24 18:12:39 -04:00

34 lines
612 B
Tcl

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