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