test time

This commit is contained in:
Quaternions 2024-12-31 21:33:48 -08:00
parent 301b468180
commit 53bde2bc3f

View File

@ -28,9 +28,14 @@ fn _1()->Result<(),crate::v1::Error>{
fn _2()->Result<(),crate::v1::Error>{
let file=std::fs::File::open("files/bhop_marble_7cf33a64-7120-4514-b9fa-4fe29d9523d").unwrap();
let input=std::io::BufReader::new(file);
let t0=std::time::Instant::now();
let mut bot_file=crate::v1::File::new(input).unwrap();
let block=bot_file.read_all()?;
println!("{:?}",t0.elapsed());
Ok(())
}