Remove match on Rule::instruction

Raymon Zutekouw 4 years ago committed by Raymon Zutekouw
parent 21cc6cb920
commit 5edcbbfd7c
No known key found for this signature in database
GPG Key ID: E62222846283925
  1. 3
      src/main.rs

@ -191,9 +191,6 @@ fn instruct(statement: Pair<Rule>, state: &mut State, out: &mut Builder) {
println!("Printing current variable");
out.append(".");
}
Rule::instruction => {
out.append("\n");
}
Rule::loopBlock => {
for nested_statement in statement.into_inner() {
instruct(nested_statement, state, out);

Loading…
Cancel
Save