now parsing headers fully
This commit is contained in:
parent
e7fb766302
commit
b25cdaa170
3 changed files with 90 additions and 3 deletions
|
@ -14,6 +14,8 @@ fn main() -> std::io::Result<()> {
|
|||
let args = Cli::parse();
|
||||
|
||||
let file = File::open(&args.path)?;
|
||||
// dbg!(take_while("01234hello", digit));
|
||||
|
||||
// dbg!(["hello", "goodbye", "myworld"].contains(&"myworlde"));
|
||||
// let mut word_gen = WordReader::new(file);
|
||||
// let mut word_count = 0;
|
||||
|
@ -26,7 +28,6 @@ fn main() -> std::io::Result<()> {
|
|||
// let word1 = "hello world";
|
||||
// let word2 = "hello planet";
|
||||
// dbg!(&word1[0..6].len());
|
||||
// dbg!(take_until("tea time now: and later", b':'));
|
||||
parse_vcd(file);
|
||||
|
||||
// tag("my oh my");
|
||||
|
|
Reference in a new issue