Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/meta-inf/mlc
[O]Caml compiler
https://github.com/meta-inf/mlc
compiler functional-programming ocaml
Last synced: 2 days ago
JSON representation
[O]Caml compiler
- Host: GitHub
- URL: https://github.com/meta-inf/mlc
- Owner: meta-inf
- Created: 2015-03-01T08:29:44.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-03-01T08:30:25.000Z (over 9 years ago)
- Last Synced: 2023-07-02T21:22:00.344Z (over 1 year ago)
- Topics: compiler, functional-programming, ocaml
- Language: OCaml
- Homepage:
- Size: 227 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MLC
Toy compiler for a subset of Caml.
Under construction.
## What's done
* Tuple, list, algebraic data types
* Pattern matchCheck `test/` for details.
## TODO
* Beta expansion
* Runtime support for string & array
* Readable error messages
* Recursive type inference (`-rectypes` in OCaml)## Dependencies
* `yasm`, `gcc`
* `ocamlbuild`, `menhir` (make)## Syntax
The syntax is slightly different from OCaml. Check `test/` and `f/parse/` for details.