In OCaml 3.11, I want to \"extend\" an existing module using the include directive, like so: module MyString = struct
Say I want to create a source code editor for ocaml programming language, w开发者_高级运维here do I start? I am looking to create an editor for the Windows platform as a hobby project. My primary skil
Here is the code on sorting any given list: let rec sort lst = match lst with [] -> [] head :: tail -> insert head (sort tail)
Is there a way to get pattern matching to match my value with any negative number? It does not matter what the negative number is I开发者_StackOverflow just need to match with any negative.
I\'m looking at the List documentation. It seems the library does not provide a sublist function. I\'m trying to get list of elements from i to j. Now I have to write it as:
In both Haskell and OCaml, it\'s possible to call into the language from C programs.How feasible would it be to create Native applications for either Windows, Mac, or Linux which made extensive use of
So I have some cool Image Processi开发者_StackOverflow中文版ng algorithm. I have written it in OCaml. It performs well.I now I can compile it as C code with such command ocamlc -output-obj -o foo.c fo
I have a OCaml library wit开发者_运维问答h lots of classes I need some translator to make it from OCaml lib a C lib so to be able to use its methods. How to do such thing? How to port OCaml lib into l
Closed. This question does开发者_Python百科 not meet Stack Overflow guidelines. It is not currently accepting answers.
Is it possible to translate everething written in OCaml to PHP? for example will it be hard to translate such lib 开发者_JS百科as lib for Fast content-aware image resizing Short answer, yes, long answ