1
1
Fork 0
mirror of https://github.com/azur1s/bobbylisp.git synced 2024-09-28 15:27:47 +00:00
bobbylisp/src/main.rs

35 lines
999 B
Rust
Raw Normal View History

2022-01-21 23:43:50 +00:00
use std::{fs::read_to_string, env::args, path::Path};
mod token;
mod util;
mod lexer;
mod parser;
2022-01-22 21:36:13 +00:00
// mod compiler;
2022-01-21 23:43:50 +00:00
fn main() {
let args = args().nth(1).expect("No input file");
let src = util::cover_paren(read_to_string(&args).unwrap());
let _file_name = Path::new(&args).file_stem().unwrap().to_str().unwrap();
let tokens = lexer::lexer(&src);
if tokens.is_err() {
2022-01-22 21:36:13 +00:00
eprintln!("{}", tokens.unwrap_err());
return;
2022-01-21 23:43:50 +00:00
} else {
2022-01-22 21:36:13 +00:00
// for t in tokens.as_ref().unwrap() {
// println!("{:?}", t);
// }
let ast = parser::parse(tokens.unwrap(), &args);
if ast.is_err() {
eprintln!("{}", ast.as_ref().unwrap_err());
return;
} else {
// Everything is in a List(..) so we need to get it out and make it into
// a vector of Expr instead, so we can compile it.
let _a = util::unwrap_list_nest(ast.unwrap());
// compiler::compile(a);
2022-01-21 23:53:56 +00:00
}
2022-01-21 23:43:50 +00:00
}
}