Help for this page

Select Code to Download


  1. or download this
    use strict;                        # 1
    {                                  # 2
    ...
        print $foo;                    # 4
    }                                  # 5
    print $foo;                        # 6
    
  2. or download this
    use strict;                        # 1
    my $bar;                           # 2
    ...
        $bar = \$foo;                  # 6
    }                                  # 7
    print $$bar;                       # 8