1 2 3 4 5 6 7 8 9
mod _common; use _common::validate; fn main() { for i in 0..(1 << 19) { validate(&i.to_string()); } }