polygott icon indicating copy to clipboard operation
polygott copied to clipboard

Fixed OCaml support.

Open firefish111 opened this issue 4 years ago • 0 comments

Currently, OCaml support is broken and displays this: image

This is because ocamlc -o main is running, which compiles the OCaml code. But it is expecting another argument which it isn't receiving. A solution would be to interpret it as ocaml main.ml (the solution in the pull request) or

ocamlc -o main main.ml
rm *.cmi *.cmo

firefish111 avatar Nov 08 '20 08:11 firefish111