This is a implementation of a lisp-interpreter loosely based on this article:
# Create a list from the arguments
(defun pair (x y)
(cons x (cons y 'nil)))
To run the tests execute:
zig build test
New test files are only picked up if they are listed in build.zig
.