Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl6
    
    for (1..3){
        print "$_\n";
    }
    
  2. or download this
    for (1..3){
        say $_;
    }
    
  3. or download this
    print "$_\n" for 1..3;
    
    say $_ for 1..3;