1pub fn get_std_resource(path: &str) -> Option<String> {
2 match path {
3 "@prelude" => Some(include_str!("prelude.lisp").to_string()),
4 "@map" => Some(include_str!("map.lisp").to_string()),
5 "@math" => Some(include_str!("math.lisp").to_string()),
6 _ => None,
7 }
8}