Guest User

loop

a guest
Dec 26th, 2015
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 6 0.06 KB | None | 0 0
  1. my $j = 0;
  2. for (1 .. 1_000_000) -> $i {
  3.     $j += $i;
  4. }
  5. say $j;
Add Comment
Please, Sign In to add comment