1 2 3 4 5 6 7 8 9
extern crate mtots; use mtots::add_standard_modules; use mtots::Globals; fn main() { let mut globals = Globals::new(); add_standard_modules(&mut globals); mtots::climain(globals); }