macro_rules! sfunction { ($name:expr, $($term:expr),*) => { ... }; }
Creates a built-in function.
use suiron::*; // Define: add(7.0, 3.0) let add_func = sfunction!("add", SFloat(7.0), SFloat(3.0));