From ec2cc5baa4eb46bcae1ac37ad15159dc281b6df5 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Fri, 30 May 2025 12:37:09 +0200 Subject: [PATCH] set empty prompt for bf interpreter, gol uses its own --- lox/bf.lox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lox/bf.lox b/lox/bf.lox index 98940cb..6dd0973 100644 --- a/lox/bf.lox +++ b/lox/bf.lox @@ -67,7 +67,7 @@ class Interpreter { } if (instruction == ",") { - tape.current.data = promptAscii("> "); + tape.current.data = promptAscii(""); } if (instruction == "[" and tape.current.data == 0) {