Help for this page

Select Code to Download


  1. or download this
    sub array {
      return 0 .. 5;
    }
    
    my %hash = array();
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    $"='|';
    print "@array\n";
    print map { $hash{$_} . ' ' } sort keys %hash;