remove spurious newline in bf interpreter

This commit is contained in:
Sebastian Hugentobler 2025-05-30 12:35:45 +02:00
parent ccff6a3a12
commit f3048b7db2
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M

View file

@ -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);