Skip to content

Commit

Permalink
newline after interpreter command
Browse files Browse the repository at this point in the history
  • Loading branch information
Noxtal committed Sep 29, 2022
1 parent 1826393 commit 0bfcda9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mindblown"
version = "0.4.0"
version = "0.4.1"
description = "Brainfuck to x86 ELF compiler with batteries included."
license = "MIT"
edition = "2021"
Expand Down
3 changes: 2 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ fn repl() {
break;
}
let nodes = Parser::parse(&code);
interpreter.interpret(&nodes)
interpreter.interpret(&nodes);
println!();
}
}

0 comments on commit 0bfcda9

Please sign in to comment.