Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roguh/clox
Lox interpreter written in OCaml by Hugo O. Rivera Calzadillas.
https://github.com/roguh/clox
dune interpreter lox menhir ocaml
Last synced: 12 days ago
JSON representation
Lox interpreter written in OCaml by Hugo O. Rivera Calzadillas.
- Host: GitHub
- URL: https://github.com/roguh/clox
- Owner: roguh
- Created: 2019-09-05T19:47:44.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-09-08T05:28:39.000Z (over 3 years ago)
- Last Synced: 2024-11-27T12:36:40.085Z (2 months ago)
- Topics: dune, interpreter, lox, menhir, ocaml
- Language: OCaml
- Homepage: https://craftinginterpreters.com
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
Awesome Lists containing this project
README
#+TITLE: Lox-in-Ocaml Interpreter
* Install
Install OCaml, opam, and dune.
#+BEGIN_SRC
asdf plugin-add ocaml
asdf install ocaml XXX
opam install dune
#+END_SRCFind dependencies: =dune external-lib-deps --missing src/cli.exe=
* Compile
#+BEGIN_SRC
make clean
make all
make test
#+END_SRC