Skip to content

v1.8.1

Compare
Choose a tag to compare
@odino odino released this 31 Oct 11:49
· 202 commits to master since this release

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()