chialisp 0.5.0

tools for working with chialisp language; compiler, repl, python and wasm bindings
Documentation

(defun deep_compare (a b)
    (if (l a)
        (if (l b)
            (assign-lambda inner_result (deep_compare (f a) (f b))
                (if inner_result
                    inner_result
                    (deep_compare (r a) (r b))
                )
            )
            1
        )
        (if (l b)
            -1
            (if (> a b)
                1
                (- 0 (> b a))
            )
        )
    )
)

(defun deep< (a b)
    (= (deep_compare a b) -1)
)

(defun deep> (a b)
    (= (deep_compare a b) 1)
)

(defun deep= (a b)
    (= (deep_compare a b) 0)
)

(defun deep<= (a b)
    (not (deep> a b))
)

(defun deep>= (a b)
    (not (deep< a b))
)

(defun deep!= (a b)
    (not (deep= a b))
)