Help for this page

Select Code to Download


  1. or download this
    $R="foo";
    print "${R}[0]\n";
    
  2. or download this
    use vars qw/$R @foo/;
    $R="foo";
    @foo = (42);
    print "${${R}}[0]\n";