macro_rules! run_time {
($v:block) => { ... };
}Expand description
ⓘ
use doe::run_time;
run_time!{
{
for i in 0..10000{
println!("{}",i);
}
}
};