Completed docs, added icon

This commit is contained in:
2023-05-28 17:24:56 +01:00
parent 6b71164aca
commit 6f5a9d05dd
28 changed files with 295 additions and 5 deletions

View File

@@ -16,7 +16,9 @@ use crate::utils::{pushed, Substack};
/// describe libraries of external functions in Rust. It implements [Add] for
/// added convenience
pub enum ConstTree {
/// A function or constant
Const(Expr),
/// A submodule
Tree(HashMap<Tok<String>, ConstTree>),
}
impl ConstTree {