I would like to build a GUI for an OCaml application I\'m writing. My first idea was to use GTK+. I would like my application to run on Macs, Linux, Windows with a natural look and feel. I know that,
Hi this is my first time posting on Stack Overflow and I\'ve run into a problem while trying to construct a type in OCaml
I have asked this question before but it turns out that what I believed to be the solution is not. The Problem
Lets say I have a list of type integer [1; 2; 开发者_运维知识库3; 4; 5; 6; 7; 8] and I want to pattern match the first three elements at once. Is there any way to do this without nested match statemen
let gen_xy vals comp o = List.fold_left ( fun a ( x, y ) -> comp ( fst a ) x, comp ( snd a ) y ) o vals
When using mutually recursive module definitions in OCaml, it\'s necessary to give 开发者_如何学Csignatures, even in the .ml file. This is an annoyance where I also want to expose a given interface fr
Does anyone know if it\'s possible use OpenMP with OCaml source code? Or another application/ambient of work, compatible with OCaml, that allows me to run parallel programs that exploit multiple core
in file testmodule.ml module TestModule = struct type my_type = MyType1 | MyType2 end How can I use TestModule in top-level?
I have a problem where I have a global hashtable, and then I load a .cma file with Dynlink, which registers a function in the hashtable.
I\'m working with a list of lists in OCaml, and I\'m trying to write a function that combine开发者_运维技巧s all of the lists that share the same head. This is what I have so far, and I make use of th