Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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
```