Help for this page

Select Code to Download


  1. or download this
    # skip zeroth element
    for(@out[1..$#out]) {
        print join ',', @$_, "\n";
    }
    
  2. or download this
    # skip zeroth element
    print "$_\n" for map { join ',', @$_ } @out[1..$#out];