Added Function Tables
- Ftable struct - CallFunction procedure - Refactors to Cell, Ctr (consequently to lex too) - More recursive routines in Cell
This commit is contained in:
parent
bcb32b19d4
commit
af28692175
4 changed files with 267 additions and 50 deletions
|
|
@ -17,8 +17,12 @@
|
|||
|
||||
mod cell;
|
||||
mod lex;
|
||||
mod func;
|
||||
mod eval;
|
||||
|
||||
pub mod ast {
|
||||
pub use crate::cell::{Cell, Ctr, cons, cell_as_string};
|
||||
pub use crate::lex::{lex};
|
||||
pub use crate::func::{Function, Operation, FTable};
|
||||
pub use crate::eval::{eval};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue