views:

342

answers:

2

Hello.

I'm learning OCaml at the moment and was wondering if it is possible to let Notepad++ take care of the interpreting of my scripts, and display the output in the compiler window?

Thanks!

+2  A: 

Notepad++, atleast the version I have, doesn't have an OCaml mode.

Have a look at this link for a list of OCaml IDEs: http://stackoverflow.com/questions/118935/know-of-an-ocaml-ide

chollida
Can we do it like Scite does Ruby? Just pointing to the ocaml compiler and viewing the output in compiler window?
Animesh
I'm not an expert but as far as I know the best you can comeup with is a batch file that you can execute that calls the ocaml compiler.But then you have to fiddle with the name and dependencies and by that point you really are better off with a true ide or having a command line open to call out to the compiler.
chollida
+1  A: 

chollida

But then you have to fiddle with the name and dependencies and by that point you really are better off with a true ide or having a command line open to call out to the compiler.

I don't have experience with notepad++, but it sounds like ocamlbuild will help in the compilation process.

nlucaroni