Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        }
        print join(' ', @arr) . "\n";
    }
    
  2. or download this
    print (map(($_, ' '), @arr), "\n");
    print $_ . " " for (@arr); print "\n";