Help for this page

Select Code to Download


  1. or download this
    $ perl -MO=Deparse -e ' @x = x() = 5; '
    @x = (x() = 5);
    
  2. or download this
    $ perl -le 'sub x : lvalue { $a } (x() = 4) = 2; print $a'
    2