From 6d48dca547f5c46f28693eee9373ae9355a9b6a9 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 a6e4848f..cd0bd3a5 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())