Help for this page

Select Code to Download


  1. or download this
    $ perl -wE'sub o { sub i { say "foo"; } } i();'
    foo
    
  2. or download this
    $ perl -wE'sub o { my ($x) = @_; sub i { say $x; } i(); } o("abc"); o(
    +"def");'
    Variable "$x" will not stay shared at -e line 1.
    abc
    abc