Help for this page

Select Code to Download


  1. or download this
    my @i=(1,2);
    my @j=(3,4);
    ...
        say $i;
        say $j;
    }
    
  2. or download this
    my @i=(1,2);
    my @j=(3,4,5);
    ...
        print $i."\n";
        print $j."\n";
    }