diff --git a/src/main.rs b/src/main.rs index 6c16854..798fdfd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -20,9 +20,9 @@ extern { } fn main() { let generators: Vec = vec![ - Box::new(|| { let x: Box = Box::new(schala_lang::Schala::new()); x }), - Box::new(|| { let x: Box = Box::new(maaru_lang::Maaru::new()); x }), - Box::new(|| { let x: Box = Box::new(robo_lang::Robo::new()); x }), + Box::new(|| { Box::new(schala_lang::Schala::new())}), + Box::new(|| { Box::new(maaru_lang::Maaru::new())}), + Box::new(|| { Box::new(robo_lang::Robo::new())}), ]; schala_main(generators); }