Add initial visitor.rs

This commit is contained in:
greg 2019-07-22 21:49:10 -07:00
parent 88029fc55a
commit be2dcb5301
2 changed files with 5 additions and 0 deletions

View File

@ -29,5 +29,6 @@ mod builtin;
mod reduced_ast;
mod eval;
mod schala;
mod visitor;
pub use schala::Schala;

View File

@ -0,0 +1,4 @@
pub trait Visitor {
}