This is a bugfix release which fixes #284 through #294.
To call a function "attached" to an hash you can simply:
hash = {"fn": f(){}}
hash.fn()
Earlier you had to "dereference" the function "out" of the hash due to a minor bug in ABS' evaluator:
hash = {"fn": f(){}}
fn = hash.fn
fn()