5 # Text values are sequences of letters.
8 assert greeting.length == ???
10 # Text supports interpolation with `$`:
12 message := "Hello $name, your number is $(1 + 2)"
16 # Multi-line text uses indented quotes:
23 # Method calls use `.`
24 assert multiline.lines() == [???]
26 # Common text methods:
27 assert "hello".upper() == ???
29 assert "hello world".split(" ") == [???]