python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Is there a way to write dune files programatically from OCaml?
I am generating OCaml code in OCaml. This code includes several Dune files which may be updated and have specific parts change. I am reaching the limit of what I can do with some clever printf, and wo...
user3078439
Votes: 0
Answers: 0
OCAML MLI + ML files and multiple implementations
I wrote a interface for a map data structure in an MLI file and then the implementation of maps using association lists in a file of the same name but with extension of "ML". this works. but...

Knows Not Much
Votes: 0
Answers: 0
OUnit2 Unbound Module
I am writing my first Ocaml+OUnit2+Dune project. but in my unit test when I say open Mymaps it says "Unbound module Mymaps"
The structure of my project is as follows
mymaps
|
|-> lib
...

Knows Not Much
Votes: 0
Answers: 1
Dune not able to compile my first project
I followed the following steps to create my project
Create the project using the following dune command
dune init proj --kind=lib mymaps
Then added 2 files under the "lib" directory
myma...

Knows Not Much
Votes: 0
Answers: 1