Parsing some stuff.

This commit is contained in:
hal8174 2025-08-01 22:17:33 +02:00
parent 16b9c32632
commit 96a24fcc28
Signed by: hal8174
SSH key fingerprint: SHA256:NN98ZYwnrreQLSOV/g+amY7C3yL/mS1heD7bi5t6PPw
2 changed files with 371 additions and 37 deletions

View file

@ -10,5 +10,7 @@ struct Args {
fn main() -> Result<(), miette::Error> {
let args = Args::parse();
parse_pbrt_v4(args.filename)
dbg!(parse_pbrt_v4(args.filename)?);
Ok(())
}