use lazy_static::lazy_static; use std::collections::BTreeMap; use crate::args::CallArgs; use crate::value::Value; #[macro_use] mod macros; mod color; mod list; mod map; mod math; mod meta; mod selector; mod string; pub(crate) type Builtin = Box Option + Send + Sync>; lazy_static! { pub(crate) static ref GLOBAL_FUNCTIONS: BTreeMap = { let mut m = BTreeMap::new(); color::register(&mut m); meta::register(&mut m); m }; }