Minor fixes of minor tools

Signed-off-by: Kakadu <Kakadu@pm.me>
This commit is contained in:
Kakadu 2024-09-05 17:32:45 +03:00
parent f6277da16e
commit d3d2535f97
12 changed files with 67 additions and 27 deletions

View file

@ -21,7 +21,9 @@ let[@ocaml.warning "-32"] main =
let rec read acc =
try
let r = read_int () in
Printf.printf "> ";
Printf.printf " > ";
(* NOTE(Kakadu): This kind of ouput (leading >) will be in a conflict with dune's
integration tests machinery *)
read (r :: acc)
with End_of_file -> List.rev acc
in