I broke something

This commit is contained in:
Yehowshua Immanuel 2022-07-19 22:05:00 -04:00
parent ca9fca5379
commit d8989d9c76
4 changed files with 45 additions and 11 deletions

View file

@ -16,12 +16,11 @@ struct Cli {
fn main() -> std::io::Result<()> {
let args = Cli::parse();
let file = File::open(&args.path)?;
let vcd = parse_vcd(file).unwrap();
println!("printing signal tree");
vcd.print_scopes();
// println!("printing signal tree");
// vcd.print_scopes();
Ok(())
}