Help for this page

Select Code to Download


  1. or download this
    use strict;
    $$a = 1;# you cannot say my $$a ;-)
    print $$a; #this print out 1;
    print $a; #this print out SCALAR(0xnnnnnnnn)
    
  2. or download this
    use strict("refs");
    my $a = "abc";
    my $abc = 1;
    print $$a;