diatom 0.5.2

The diatom programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
f = 
    fn x = 
        if x > 5 then
            'x>5'
        elsif x > 4 then
            'x>4'
        else
            'x<=4'
        end

assert(f(0) == 'x<=4')