From f3048b7db2ef2c78e162afb8c2e717a8bcf200d7 Mon Sep 17 00:00:00 2001 From: Sebastian Hugentobler Date: Fri, 30 May 2025 12:35:45 +0200 Subject: [PATCH] remove spurious newline in bf interpreter --- lox/bf.lox | 1 - 1 file changed, 1 deletion(-) diff --git a/lox/bf.lox b/lox/bf.lox index 6398d59..98940cb 100644 --- a/lox/bf.lox +++ b/lox/bf.lox @@ -19,7 +19,6 @@ class Tape { this.current = this.current.previous; } - forward() { if (this.current.next == nil) { this.current.next = Cell(this.current, nil, 0);