some incomplete changes

This commit is contained in:
Yehowshua Immanuel 2022-07-12 20:02:45 -04:00
parent 29d72b6e9c
commit 49d103fd56
5 changed files with 53 additions and 13 deletions

View file

@ -5,7 +5,7 @@ pub mod test;
use test::*;
pub mod vcd;
use vcd::*;
use vcd::parse_vcd;
#[derive(Parser)]
struct Cli {
@ -16,6 +16,7 @@ struct Cli {
fn main() -> std::io::Result<()> {
let args = Cli::parse();
let file = File::open(&args.path)?;
parse_vcd(file);