Help for this page

Select Code to Download


  1. or download this
    #!usr/bin/perl -w
    use strict;
    ...
        my ($hash)=@_;
        print "$hash{A} $hash{B} $hash{C}\n";    
    }
    
  2. or download this
    #!usr/bin/perl -w
    use strict;
    ...
        my (%hash)=('A'=>1, 'B'=>2, 'C'=> 3);
        return(\%hash);    
    }