Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 619 Bytes

File metadata and controls

29 lines (23 loc) · 619 Bytes

glisp

Package Version Hex Docs

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