34 lines
590 B
Tcl
34 lines
590 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
|
|
= ???
|
|
>> b
|
|
= ???
|
|
>> c
|
|
= ???
|
|
>> d
|
|
= ???
|
|
|
|
# Text values support interpolation using `$`:
|
|
name := "Alice"
|
|
greeting := "Hello, $name!"
|
|
|
|
>> greeting
|
|
= ???
|