StackUnderflow
StackUnderflow

Reputation: 25408

Editor for programming ML on windows?

I know I can use Emacs but I haven't used it earlier... are there any other alternatives??

Thanks

Upvotes: 4

Views: 1214

Answers (3)

jussij
jussij

Reputation: 10580

The Zeus programmer's editor can be easily configured for almost any programming language.

Upvotes: 3

nlucaroni
nlucaroni

Reputation: 47944

Of course... VIM --what i use with ocaml.

Aside from that, there is an eclipse plug-in for SML/NJ called ML-Dev and ODT for ocaml.

Upvotes: 2

Brian
Brian

Reputation: 118895

You could use the Visual Studio editor for F# - with

#indent "off"

at the top of the file, the core of F# is largely compatible with OCaml (especially if you reference the F# PowerPack). Not perfect, but useful...

Anecdote: a friend of mine was taking a programming class that used OCaml, and he used F# inside VS (sticking to OCaml library/language) to author his homework, to have good editor/debugger support while working, and then switched to OCaml compiler for final touch-ups and compatibility fixes before submitting assignments; this seemed to work reasonably well for him.

Upvotes: 2

Related Questions