Created
October 4, 2015 11:27
-
-
Save alexkirsz/7dabfdd813d715f6ff02 to your computer and use it in GitHub Desktop.
ST3 Build Systems for OCaml
This file contains 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 characters
{ | |
"shell_cmd": "type $file | ocaml", | |
"selector": "source.ml" | |
} |
This file contains 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 characters
{ | |
"shell_cmd": "cat $file | ocaml", | |
"selector": "source.ml" | |
} |
This file contains 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 characters
{ | |
"shell_cmd": "ocaml $file", | |
"selector": "source.ml" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Go to Tools > Build System > New Build System..., paste the content of one of the above files and save it.
The build systems denoted with REPL will execute your code through the REPL, which means that you'll receive a lot more feedback but lose line/column reporting in error messages.