lambdalisp icon indicating copy to clipboard operation
lambdalisp copied to clipboard

A Lisp interpreter written in untyped lambda calculus

Results 2 lambdalisp issues
Sort by recently updated
recently updated
newest added

``` [nix-shell:~/lambdalisp]$ echo "(format t \"test\")" >> src/prelude.lisp [nix-shell:~/lambdalisp]$ make run-repl mkdir -p src/build ./tools/compile-prelude.sh > ./src/build/def-prelude.cl.tmp mv ./src/build/def-prelude.cl.tmp ./src/build/def-prelude.cl cd src; sbcl --script main.cl > .././bin/lambdalisp.blc.tmp mv ./bin/lambdalisp.blc.tmp ./bin/lambdalisp.blc...

Hi, over at https://github.com/NixOS/nixpkgs/pull/242101#pullrequestreview-1660442765, we wanted to make use of the make file more directly when building lambda-lisp. It would be very helpful if lambdalisp could vendor those files, or...