Hazel is a live functional-programming environment rooted in the principles of type theory. You can find the relevant papers and more motivation at the Hazel website.
You can try Hazel online with either the trunk or dev version. Note that the trunk branch is updated infrequently and is currently almost two years behind!
If you already have ocaml
version 4.08.1 and least version 2.0 of opam
installed, you can build Hazel by running the following commands.
git clone [email protected]:hazelgrove/hazel.git
cd hazel
make deps
make dev
To run Hazel, run the command make echo-html
, which will print a filename.
Then use your preferred browser to open that file. For convenience, the
following make targets open the corresponding browser or invoke the
corresponding command immediately (see INSTALL.md):
make firefox
make chrome
make chrome-browser
make chromium
make chromium-browser
make win-chrome
make win-firefox
make xdg-open
make open
If you are unfamiliar with ocaml
or opam
, do not have them installed, or
just get stuck, we recommend you follow the step-by-step installation
instructions contained in INSTALL.md.
This link lets you type OCaml and see what the corresponding ReasonML syntax is: https://reasonml.github.io/en/try.
This is useful if you are trying to figure out the ReasonML syntax for something that you know the OCaml syntax for.
Most of our team uses VisualStudio Code to write code. If you use VS Code, here are a few extensions that might be helpful.
-
These extensions provide support for editing ReasonML and Dune source code:
-
Due to Reason's poor parse errors, unbalanced parentheses can be difficult to find. The following extensions help with that.
Hazel is implemented in Reason (a dialect of OCaml) and is compiled to
Javascript for the web browser via the js_of_ocaml
compiler.
Though make
targets are provided as a convenience, they mostly translate to
dune
commands.
Invoking make
by itself is equivalent to invoking make dev
. With these
commands we pass additional flags to js_of_ocaml
that cause the insertion of
comments that map locations in the generated JS to locations in the source
files. This is useful for debugging purposes.
make dev
also auto-formats Reason source files using refmt
(this is what the
@src/fmt
alias is for). This ensures code from all contributors follows the
same style.
The make dev
and make release
commands do three things:
- Generate some internal parsers using
menhir
. - Compile the Reason code to OCaml bytecode using the OCaml compiler.
- Compile the OCaml bytecode to JavaScript
(
_build/default/src/hazelweb/www/hazel.js
) usingjs_of_ocaml
.
You can print to the browser console using the standard print_endline
function. This is probably the easiest method right now.
js_of_ocaml
does support source maps and has some other flags that might be useful. If you experiment with those and get them to work, please update this README with some notes.
You can run all of the unit tests located in src/hazelcore/test
by running make test
.
Unit tests are written using ppx_expect and ppx_inline_tests. If you would like to adjust your expect tests to assert for the output that was last printed, run make fix-test-answers
.
If the inline test runner causes problems for you, you can likely resolve the issue by running opam update
then opam upgrade
.