An open API service indexing awesome lists of open source software.

https://github.com/ryanwebber/rum

An embeddable, Lua-inspired Lisp language.
https://github.com/ryanwebber/rum

Last synced: 5 months ago
JSON representation

An embeddable, Lua-inspired Lisp language.

Awesome Lists containing this project

README

          

# Rum

An embeddable, Lua-inspired Lisp language where interpreter state is exposed
through meta-table facilities.

## Example

```txt
; Functional
(map [1 2 3] (lambda! (x) (+ x 1)))

; Meta-programming
(set (#meta :locals) "myvar" 42)
(+ myvar 1)

```