diatom 0.5.2

The diatom programming language
Documentation
1
2
3
4
5
6
7
-- Option Monad
Option = {
    Some = 
        fn x = {value = x} <- Option,
    None = {} <- Option,
}