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
9
10
11
12
13
14
15
;; This program should ideally become very terse when compiled since everything
;; is constant in it, which means we won't necessarily get a runnable program
;; from chialisp compilation.
;;
;; This is used as one test for --test-deinline.
(mod ()
  (include *standard-cl-22*)
  (include utility_macros.clib)
  (defun-inline test-me (X) (* 3 X))
  (assert
   (= (test-me 5) 15)
   (= (test-me 0) 0)
   ()
   )
  )