blob: b9412266851cfd2b3981cc8cdc65732e22506b3e (
plain)
1
2
3
4
5
6
7
8
9
10
|
foo = "foo";
number-of-the-beast = 666;
cool-number = number-of-the-beast; # value lookup
num = int.zero; # builtin value
int.double = int.multiply 2;
list.multiply-all = reduce int.multiply 1;
ifelse (string.eq? foo "bar")
(int.double 1) # if foo = "bar", calc 1 * 2
number-of-the-beast # else, number of the beast
|