Help for this page

Select Code to Download


  1. or download this
    print "${X()} ${X()}\n";
    
  2. or download this
    print "${X()}${X()}\n";
    
  3. or download this
    $ perl -E'my $x=5; sub X { \(++$x) }  say ${ X() } +     ${ X() };'
    14
    
    $ perl -E'my $x=5; sub X { \(++$x) }  say ${ X() } + 0 + ${ X() };'
    13