Help for this page

Select Code to Download


  1. or download this
    @vars =("num", "alpha" );
    $num=1; 
    ...
    foreach(@vars){
      @$_=$$_;
    }
    
  2. or download this
    my %vars=(num => 1, alpha => 'a');
    
    ...
    foreach(keys %vars){
      $h{$_}=[$vars{$_}];
    }