Here's a simple OCaml program: helloworld.ml
print_string "Hello world...\n" ;;
I'm using OCaml 3.11.0 (MSVC built), VS 2008, and of course FlexDLL
Here's how I compile it (ran from the VS 2008 shell): ocamlopt helloworld.ml -o helloworld
No executable created. Is there something wrong? The program compiled and ran on Linux, though.