From 516407f9c29a108ae72abc5272b4a8ad2f1bada9 Mon Sep 17 00:00:00 2001 From: Konstantin Nazarov Date: Mon, 26 Aug 2024 13:16:54 +0100 Subject: [PATCH] Don't duplicate input line when reading from REPL --- src/vli.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/vli.cpp b/src/vli.cpp index ed516c8..4f35e87 100644 --- a/src/vli.cpp +++ b/src/vli.cpp @@ -30,7 +30,6 @@ Result run_string(const String& src) { Result run_repl() { while (true) { auto src = TRY(read_line("vli> ")); - debug_print(src); auto res = TRY(run_string(src)); debug_print(res); }