extern crate pest;
#[macro_use]
extern crate pest_derive;
mod vasm_parser;
mod parse_error;
mod ast;
fn main() {
println!("Hello, world!");
}