Skip to content

Commit 3fb7434

Browse files
committed
Fix loop
1 parent 8283b3f commit 3fb7434

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/isgen.ml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ let rec loop env =
1212
let ( let* ) x f = Result.bind x ~f in
1313
let* pp = Stellogen.Sgen_eval.pp_err ~notyping:false e in
1414
Stdlib.output_string Stdlib.stderr pp;
15-
Error e
15+
Stdlib.flush Stdlib.stderr;
16+
loop env
1617

1718
let () =
1819
let _ = loop Stellogen.Sgen_ast.initial_env in

0 commit comments

Comments
 (0)