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