A value represents emptiness
null
A 64-bit floating-points number specified by IEEE 754
55
55.0
0.5
-1.5
200.19
A true or A false
true
false
An immutable list of characters
"Hello, World!"
A list of values
[0, 1, "two", false, 4]
A map of a string to any value
{"a": "b"}
A callable value that is called by the virtual machine and must be defined by the user
fn a, b {
}
A callable value that is called by the host machine and must be defined by the virtual machine