# v0.6.0 function countto(n::Integer) i = zero(n) println("Counting...") while i < n i += 1 end println("Done!") end @time countto(10 ^ 5) @time countto(10 ^ 10)