diff --git a/src/function/builtin.rs b/src/function/builtin.rs index 350a810..95aecda 100644 --- a/src/function/builtin.rs +++ b/src/function/builtin.rs @@ -78,6 +78,8 @@ pub fn builtin_function(identifier: &str) -> Option { "math::cbrt" => simple_math!(cbrt), // Hypotenuse "math::hypot" => simple_math!(hypot, 2), + // Absolute + "math::abs" => simple_math!(abs), // Rounding "floor" => simple_math!(floor), "round" => simple_math!(round),