glisp
gleam add glisp@1
import glisp
pub fn main() -> Nil {
// This starts the GLisp REPL which allows you to evaluate Lisp expressions
// Example expressions you can try:
// (+ 1 2 3)
// (define x 42)
// (if (> x 10) (* x 2) (/ x 2))
glisp.main()
}
Further documentation can be found at https://hexdocs.pm/glisp.
Development
gleam run # Run the project
gleam test # Run the tests