Help for this page

Select Code to Download


  1. or download this
    $y = 123;
    sub f { print("$y\n"); }  # 456 or 123
    ...
    __END__
    456
    123
    
  2. or download this
    my $x = 123;
    sub f { print("$x\n"); }  # 123
    ...
    __END__
    123
    123