Help for this page

Select Code to Download


  1. or download this
    sub xyz {
       my ($tgs) = @_;
    ...
    END_OF_SUB_XYZ
       ;
    }
    
  2. or download this
    sub xyz {
        my ($tgs) = @_;
        my $hash_name = "Test_Hash_$tgs";
        my %{$hash_name};
    }
    
  3. or download this
    sub xyz {
        my ($tgs) = @_;
        my %Test_hash{$tgs} = {};
        # use $Test_hash{$tgs}{foo}, etc.
    }