use State;
/// Helper type for function that can return an error
pub type Result<T> = Result;
/// Helper type for builtin functions to pass the engine state
pub type PrimitiveFn = ;
/// Run a function and return both the function results
/// and the amount of time it took to run the function