passerine 0.9.2

A small extensible functional scripting language designed for concise expression with little code.
Documentation
-- action: run
-- outcome: success
-- expect: "Nice"

a = x -> x "Nice"
b = x -> a x
c = x -> b x
d = x -> c x
e = x -> d x

i = x -> x

e i