Help for this page

Select Code to Download


  1. or download this
    my @a = qw(aaa bbb);
    my $r = \$a[0];
    @a = ();
    print $$r;
    
  2. or download this
    sub f { my $x = ...; return $x }