By Christopher Cunningham
Type | Example | Operators |
Unit | () | |
Bool | true, false | andalso, orelse, =, <> |
Integers | 75, ~10 | basic math ops (+, -, *, div, mod) and relational ops (<, <=, >, >=, =, <>) |
Strings | "xyz" | std. escape chars, relational ops |
Reals | 3.14, 21e7 | real(conversion), basic math ops, relational ops except for = and <>, floor, ceiling |
Char | #"a" | str(#"a") (conversion) |