tomo-koans/lesson-templates/lesson-05-basic-types.tm

34 lines
586 B
Plaintext
Raw Normal View History

2025-03-24 15:12:39 -07:00
# Basic Types
func main():
# Tomo has several built-in types, including:
# - Int (integer numbers)
# - Num (floating-point numbers)
# - Text (string values)
2025-03-25 13:41:24 -07:00
# - Bool (yes or no)
2025-03-24 15:12:39 -07:00
# 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
2025-03-24 19:16:58 -07:00
= ???
2025-03-24 15:12:39 -07:00
>> b
2025-03-24 19:16:58 -07:00
= ???
2025-03-24 15:12:39 -07:00
>> c
2025-03-24 19:16:58 -07:00
= ???
2025-03-24 15:12:39 -07:00
>> d
2025-03-24 19:16:58 -07:00
= ???
2025-03-24 15:12:39 -07:00
# Text values support interpolation using `$`:
name := "Alice"
greeting := "Hello, $name!"
>> greeting
2025-03-24 19:16:58 -07:00
= ???