chialisp 0.5.0

tools for working with chialisp language; compiler, repl, python and wasm bindings
Documentation
1
2
3
4
5
6
import sys
import chialisp

this_module = sys.modules[__name__]
for key in dir(chialisp):
    setattr(this_module, key, getattr(chialisp, key))