main()1 fn main() {
2     let mut buf = Vec::new();
3     for _ in 0..100 {
4         buf.push(wasip2::clocks::monotonic_clock::subscribe_duration(0));
5     }
6 }
7