passerine 0.9.2

A small extensible functional scripting language designed for concise expression with little code.
Documentation
1
2
3
4
5
6
7
8
9
10
11
-- action: run
-- outcome: success
-- expect: true

b = false -> true

-- is the same as (x, y) = (a, (b.c))
-- not (x, y) = ((a, b) . c)
x, y = "Hello", false . b

print y