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.
- Host: GitHub
- URL: https://github.com/ryanwebber/rum
- Owner: ryanwebber
- Created: 2023-05-22T23:56:29.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T06:02:14.000Z (almost 2 years ago)
- Last Synced: 2024-08-28T07:23:28.274Z (almost 2 years ago)
- Language: Rust
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```