diatom 0.5.2

The diatom programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
-- Int type (64-bit signed integer)
-- Meta table is stored in `Int`

i = -10
assert( i.abs() == 10 )
assert( i.float() < 0 )

-- Int also provies max and min 
-- possible value for this type
imax = Int::MAX
imin = Int::MIN