Help for this page

Select Code to Download


  1. or download this
    { 
       one => [ [ 1, 2 ], 3 ];
       ...
    }
    
  2. or download this
    { 
       one => [ [ [ 1, 2 ], 3 ], 4 ];
       ...
    }
    
  3. or download this
    { 
        one => '1 2 3 4',
        ...
    }
    
  4. or download this
    #!/usr/bin/perl -w
     use strict;
    ...
         $h1{ $x } .=  ' ' . $h2{ $x };
     }
     print Dumper (\%h1);
    
  5. or download this
    #!/usr/bin/perl -w
     use strict;
    ...
         $h1{ $x } .=  $; . $h2{ $x };
     }
     print Dumper (\%h1);