got all the load script stuff done.
added script args to main shell also added userlib tests to ci
This commit is contained in:
parent
381852b3bd
commit
3f75157fac
7 changed files with 122 additions and 49 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
mod config;
|
||||
mod run;
|
||||
mod eval;
|
||||
mod lex;
|
||||
mod segment;
|
||||
|
|
@ -23,6 +23,7 @@ mod stl;
|
|||
mod sym;
|
||||
|
||||
pub mod ast {
|
||||
pub use crate::run::{run, load_defaults, load_environment};
|
||||
pub use crate::eval::eval;
|
||||
pub use crate::lex::lex;
|
||||
pub use crate::segment::{Ctr, Seg, Type};
|
||||
|
|
@ -32,7 +33,3 @@ pub mod ast {
|
|||
pub mod stdlib {
|
||||
pub use crate::stl::{dynamic_stdlib, static_stdlib};
|
||||
}
|
||||
|
||||
pub mod aux {
|
||||
pub use crate::config::configure;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue