From 6b5b8998c93acca275d1460bc9e2989c48c52155 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 0e0a168..571a53d 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()),