Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.23 KB

README.md

File metadata and controls

36 lines (27 loc) · 1.23 KB

codecov Test and coverage Release



Logo

GoLisp

A Lisp-like general-purpose, dynamically-typed, and interpreted language.

Example

(def! fib
    (fn* (n)
        (if (< n 2)
            n
            (+ (fib (- n 1)) (fib (- n 2))))))

(prn (fib 10))

Contributing

We welcome contributions to GoLisp! If you have an idea for a new feature or have found a bug, please open an issue. To submit a change, fork the repository and create a pull request with your changes.

License

GoLisp is licensed under the MIT License. See LICENSE for more details.