Created
May 3, 2025 01:29
-
-
Save TheRockStarDBA/6a308f31c3df822b98bf5c0325ab3ad8 to your computer and use it in GitHub Desktop.
Revisions
-
TheRockStarDBA created this gist
May 3, 2025 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ References : https://dev.realworldocaml.org/json.html#using-non-standard-json-extensions and https://cs3110.github.io/textbook/chapters/preface/install.html 1. install opam `brew install opam` 2. initialize `opam init -y` and then run `eval $(opam env --switch=default)` 3. install platform tools `opam install ocaml-lsp-server odoc ocamlformat utop` 4. check if things are working fine by running `utop` 5. Exit UTop by typing `#quit;;` or pressing `Ctrl+D`.