Help for this page

Select Code to Download


  1. or download this
    our $foo;
    local $foo = 1;
    ...
    sub foo {
        print "foo: $foo\n";
    }
    
  2. or download this
    my $foo;
    $foo = 1;
    ...
    sub foo {
        print "foo: $foo\n";
    }
    
  3. or download this
    foo(1);
    foo(2);
    ...
        my ($foo) = @_;
        print "foo: $foo\n";
    }