add append function

This commit is contained in:
Aidan Hahn 2021-11-02 19:05:35 -07:00
parent 37eba3008f
commit ee3b53bfb5
No known key found for this signature in database
GPG key ID: 327711E983899316
5 changed files with 79 additions and 3 deletions

View file

@ -22,6 +22,7 @@ mod eval;
mod vars;
mod stl;
mod str;
mod append;
pub mod ast {
pub use crate::segment::{Seg, Ctr, ast_to_string, Type, Ast, new_ast};
@ -36,4 +37,5 @@ pub mod ast {
pub mod stdlib {
pub use crate::stl::{get_stdlib};
pub use crate::str::{get_echo};
pub use crate::append::{get_append};
}