use dedukti_parse::{Lazy, Scoped, Strict, Symb};
use std::fs::File;
use std::io::{BufRead, BufReader};
fn main() {
let args: Vec<String> = std::env::args().collect();
let filename = &args[1];
let line = std::fs::read_to_string(filename).expect("Something went wrong reading the file");
println!("loaded");
let iter = Strict::new(&line);
for cmd in iter {
let cmd: Scoped<&str> = cmd.unwrap();
println!("{}", cmd);
}
}