Help for this page

Select Code to Download


  1. or download this
    $_ = 3;
    print sub :lvalue { print "$_+";       $_ }->() +
          sub :lvalue { print "10="; ++$_; 10 }->(), "\n";
    
  2. or download this
    3+10=14