Help for this page

Select Code to Download


  1. or download this
    sub Initialize_child {
      print $foo;
    }
    
  2. or download this
    use strict;
    my $foo = 1;
    bar();
    ...
    sub bar {
      print $foo;
    }
    
  3. or download this
    use strict;
    {
      my $foo = 1;
    ...
    sub bar {
      print $foo;
    }