Are there any resources on how to split a large module into a directory of sub-modules? Something like splitting lib/module.ml into lib/module/mod1.ml, lib/module/mod2.ml, etc. . I tried this but realized I couldn’t access other modules in the library within these sub-modules and they were also not accessible from other module in the lib/ directory. I tried googling but did not find any material on how this can be done.
1 Like