From d7725b0db70b3db89943b2241e67e8574f3129a1 Mon Sep 17 00:00:00 2001 From: Erin Date: Thu, 9 Dec 2021 00:35:43 +0100 Subject: [PATCH] sync --- ablescript/src/variables.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/ablescript/src/variables.rs b/ablescript/src/variables.rs index a6e4848..cd0bd3a 100644 --- a/ablescript/src/variables.rs +++ b/ablescript/src/variables.rs @@ -578,6 +578,7 @@ impl ops::Div for Value { .collect(), } } + Functio::Chain { .. } => todo!(":P"), Functio::Eval(s) => { let len = s.len(); Functio::Eval(s.chars().take((len as f64 * fraction) as usize).collect())