remove spurious newline in bf interpreter
This commit is contained in:
parent
ccff6a3a12
commit
f3048b7db2
1 changed files with 0 additions and 1 deletions
|
@ -19,7 +19,6 @@ class Tape {
|
||||||
this.current = this.current.previous;
|
this.current = this.current.previous;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
forward() {
|
forward() {
|
||||||
if (this.current.next == nil) {
|
if (this.current.next == nil) {
|
||||||
this.current.next = Cell(this.current, nil, 0);
|
this.current.next = Cell(this.current, nil, 0);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue