There was an error while loading. Please reload this page.
You can use ocamldebug when recompiling with (modes byte) uncommented (from src/dune).
(modes byte)
The module TPrinting.Printer provides many stringification functions.
TPrinting.Printer
Use print_endline to print to the console:
print_endline
print_endline ("Some preffix " ^ TPrinting.Printer.s_type some_type);
Use print_list_br to print a list:
print_list_br
print_list_br "Some preffix: " TPrinting.Printer.s_type some_type ~cache:true;