pub const PRELUDE_FUNCTIONS: &[&str] = &[
"print",
"println",
"debug",
"assert",
"expect",
"todo",
"unreachable",
"sleep",
"spawn",
];
pub const PRELUDE_TYPES: &[&str] = &[
"Int", "Float", "Bool", "String", "Char", "Void", "Never", "Optional", "Result",
"List", "Map", "Set", "Fn", "Duration", "Instant", "Channel",
];
pub const PRELUDE_CONSTRUCTORS: &[&str] = &["Some", "None", "Ok", "Err"];
pub const PRELUDE_TRAITS: &[&str] = &[
"Comparable",
"Equatable",
"Hashable",
"Displayable",
"Iterator",
"Iterable",
"Into",
"From",
];
pub const PRIMITIVE_TYPES: &[&str] = &[
"Int", "Float", "Bool", "String", "Char", "Void", "Never",
];