chialisp 0.5.0

tools for working with chialisp language; compiler, repl, python and wasm bindings
Documentation
1
2
3
4
5
6
7
; returns the first count elements of mylist
(defun slice (mylist count)
    (if (print (list "slice inputs" mylist count) (not count))
        0
        (c (f mylist) (slice (r mylist) (- count 1)))
    )
)