From d04ecaeef5f8264ef4e5ea3c547aef9b878ea02c Mon Sep 17 00:00:00 2001 From: Raymon Zutekouw <40148684+Raymonzut@users.noreply.github.com> Date: Thu, 6 Jan 2022 20:07:00 +0100 Subject: [PATCH] Remove match on Rule::instruction --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index bee88a0..13e50de 100644 --- a/src/main.rs +++ b/src/main.rs @@ -191,9 +191,6 @@ fn instruct(statement: Pair, 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);