5 # Tomo has several built-in types, including:
6 # - Int (integer numbers)
7 # - Num (floating-point numbers)
8 # - Text (string values)
11 # Fix these variables so they match the expected values:
16 # Boolean values use `yes`/`no`, not `true`/`false`
24 # Text values support interpolation using `$`:
26 greeting := "Hello $name"
28 assert greeting == ???