From 6889c3f3b243c3677a39270403bd2a445d358b4a Mon Sep 17 00:00:00 2001 From: Erin Date: Tue, 7 Dec 2021 21:20:16 +0100 Subject: [PATCH] Fmt! --- ablescript/src/variables.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ablescript/src/variables.rs b/ablescript/src/variables.rs index 0e0a1685..571a53d3 100644 --- a/ablescript/src/variables.rs +++ b/ablescript/src/variables.rs @@ -449,6 +449,7 @@ impl ops::Not for Value { tape_len, } => { instructions.reverse(); + Functio::BfFunctio { instructions, tape_len, @@ -460,6 +461,7 @@ impl ops::Not for Value { } => { params.reverse(); body.reverse(); + Functio::AbleFunctio { params, body } } Functio::Eval(code) => Functio::Eval(code.chars().rev().collect()),