able-script/src/main.rs

45 lines
1.1 KiB
Rust
Raw Normal View History

2021-04-18 09:39:43 -05:00
#![forbid(unsafe_code)]
2021-04-11 13:22:59 -05:00
mod base_55;
mod error;
mod lexer;
2021-04-11 15:11:23 -05:00
mod parser;
mod repl;
2021-04-13 18:01:19 -05:00
mod variables;
2021-04-11 17:22:06 -05:00
2021-04-13 10:43:54 -05:00
use clap::{App, Arg};
2021-04-18 09:39:43 -05:00
use parser::Parser;
fn main() {
2021-04-18 09:39:43 -05:00
// variables::test();
2021-04-13 18:01:19 -05:00
2021-04-11 14:11:39 -05:00
let matches = App::new("AbleScript")
.version(env!("CARGO_PKG_VERSION"))
2021-04-11 11:47:35 -05:00
.author("Able <abl3theabove@gmail.com>")
.about("AbleScript interpreter")
2021-04-11 11:47:35 -05:00
.arg(
Arg::with_name("file")
.short("f")
.long("file")
.value_name("FILE")
2021-04-11 15:11:23 -05:00
.help("Set the path to interpret from")
2021-04-11 11:47:35 -05:00
.takes_value(true),
)
.get_matches();
2021-04-13 18:01:19 -05:00
2021-04-11 11:47:35 -05:00
match matches.value_of("file") {
Some(file_path) => {
// Read file
let source = std::fs::read_to_string(file_path).unwrap();
2021-04-18 09:39:43 -05:00
// Parse
let mut parser = Parser::new(&source);
let ast = parser.init();
2021-04-18 09:39:43 -05:00
println!("{:#?}", ast);
2021-04-11 11:47:35 -05:00
}
None => {
println!("Hi [AbleScript {}] - AST Printer", env!("CARGO_PKG_VERSION"));
repl::repl();
2021-04-11 11:47:35 -05:00
}
}
}