chialisp 0.5.0

tools for working with chialisp language; compiler, repl, python and wasm bindings
Documentation
1
2
3
4
5
6
7
8
(mod (X)
  (include *standard-cl-23*)
  (defconstant Z 1000000)
  (let
      ((X1 (+ X Z)))
    (+ X1 X1 X1 X1 X1 X1)
    )
  )