schala/src/main.rs

16 lines
345 B
Rust
Raw Normal View History

2018-03-23 18:43:43 -07:00
extern crate schala_repl;
//extern crate maaru_lang;
//extern crate rukka_lang;
//extern crate robo_lang;
2018-03-23 18:43:43 -07:00
extern crate schala_lang;
use schala_repl::{ProgrammingLanguageInterface, start_repl};
2017-10-12 02:13:55 -07:00
extern { }
2015-07-16 01:40:37 -07:00
fn main() {
2019-06-21 02:01:46 -07:00
let langs: Vec<Box<dyn ProgrammingLanguageInterface>> = vec![Box::new(schala_lang::Schala::new())];
start_repl(langs);
}