variable export and entire config system

This commit is contained in:
Aidan Hahn 2021-11-07 22:04:57 -08:00
parent 0931fbdcf0
commit 307101327c
No known key found for this signature in database
GPG key ID: 327711E983899316
10 changed files with 184 additions and 21 deletions

View file

@ -23,6 +23,7 @@ mod vars;
mod stl;
mod str;
mod append;
mod config;
pub mod ast {
pub use crate::segment::{Seg, Ctr, ast_to_string, Type, Ast, new_ast};
@ -40,3 +41,7 @@ pub mod stdlib {
pub use crate::append::{get_append};
pub use crate::vars::{get_export};
}
pub mod aux {
pub use crate::config::configure;
}