Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joajfreitas/flang
Rust implementation of https://github.com/kanaka/mal
https://github.com/joajfreitas/flang
Last synced: about 1 month ago
JSON representation
Rust implementation of https://github.com/kanaka/mal
- Host: GitHub
- URL: https://github.com/joajfreitas/flang
- Owner: joajfreitas
- License: gpl-3.0
- Created: 2021-04-06T15:54:38.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-03-10T22:41:15.000Z (10 months ago)
- Last Synced: 2024-03-10T23:35:08.960Z (10 months ago)
- Language: Rust
- Homepage:
- Size: 198 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![Tests](https://github.com/joajfreitas/flang/actions/workflows/tests.yml/badge.svg?branch=master)](https://github.com/joajfreitas/flang/actions/workflows/tests.yml)
# flang
flang is a lisp implementation that follows the [mal](https://github.com/kanaka/mal) process but does not strictly aderes to it.
flang is implemented in Rust and is based on the Rust implementation of mal by
[Joel Martin](https://github.com/kanaka).## Running
```
cargo run --bin flang repl
user> (print "hello world")
hello world
```