1 2 3 4 5 6 7 8 9 10 11
mod xml; pub mod csv; mod net; mod process; use super::compiler::*; pub fn add_to_symtable(st: &mut SymbolTable) { net::add_to_symtable(st); xml::add_to_symtable(st); process::add_to_symtable(st); }