Advertisement
Iolly_

Untitled

Jun 22nd, 2020
1,973
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Julia 0.14 KB | None | 0 0
  1. i = 0
  2. array = []
  3.  
  4. while i < 10000000
  5.     append!(array, i);
  6.     i += 1
  7.     global i
  8. end
  9.  
  10. for item in array
  11.     println(item)
  12. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement