Help for this page

Select Code to Download


  1. or download this
    # [at the top, before subroutine definitions and code]
    my %my_vars;
    ...
      my $spec_vars = param('spec_vars');
      @my_vars{qw/one two three four five/} = split /~/, $spec_vars;
    }
    
  2. or download this
    # [at the top, before subroutine definitions and code]
    my ($one, $two, $three, $four, $five);
    ...
      ($one, $two, $three, $four, $five) = split /~/, $spec_vars;
    }