Bio: A Lisp dialect written in Zig
(github.com)
from armchair_progamer@programming.dev to programming_languages@programming.dev on 15 Jul 2024 05:46
https://programming.dev/post/16874008
from armchair_progamer@programming.dev to programming_languages@programming.dev on 15 Jul 2024 05:46
https://programming.dev/post/16874008
Bio is an experimental Lisp dialect similar to Scheme, with an interpreter written in Zig
Features include macros, garbage collection, error handling, a module facility, destructuring, and a standard library.
Example:
(filter (quicksort '(5 40 1 -3 2) <) (λ (x) (>= x 0))) (1 2 5 40)
threaded - newest