From d0b6332e0c5b1a8e3efeb62c54a1414c23a544c7 Mon Sep 17 00:00:00 2001 From: nbecker Date: Wed, 27 Feb 2019 13:23:49 +0100 Subject: [PATCH] suppressed testing with non-deterministic --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4199b36a..f889230a 100644 --- a/README.md +++ b/README.md @@ -136,11 +136,13 @@ instance `# install_printer Containers.(List.pp Int.pp)` will *not* work out of the box. You can make this work by writing a short module which defines ready-made combined printing functions, and loading that in ocamldebug. For instance -``` -ocaml module M = struct -let pp_int_list = Containers.(List.pp Int.pp) + +```ocaml non-deterministic=command +module M = struct + let pp_int_list = Containers.(List.pp Int.pp) end ``` + loaded via `# load_printer m.cmo` and installed as `# install_printer M.pp_int_list`.