Help for this page

Select Code to Download


  1. or download this
    my $string       = 'foo';
    my $variablename = 'string';
    my $temp         = ${$variablename};
    print $temp, $/;
    
  2. or download this
    $string = 'foo';
    my $variablename = 'string';
    my $temp         = ${$variablename};
    print $temp, $/;