passerine 0.9.2

A small extensible functional scripting language designed for concise expression with little code.
Documentation
-- 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