passerine 0.9.2

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

pi = 2.7

update_a = () -> () -> { pi = 3.14 }

updater = update_a ()
updater ()

pi