Help for this page

Select Code to Download


  1. or download this
    # Can print $v only once!!!
    # Second call returns undef.
    ...
            eval 'print $v, "\n"'; # undef
        );
    }->();
    
  2. or download this
    sub {
        my $v = 111;
    ...
            print $v, "C\n";
        );
    }->();