Help for this page

Select Code to Download


  1. or download this
    $x || $y || $z || 1;
    
  2. or download this
    [ ~/tmp ] $ perl -we 'use strict; my $x'
    [ ~/tmp ] $ perl -we 'my $x'
    ...
    Name "main::x" used only once: possible typo at -e line 1.
    [ ~/tmp ] $ perl -we 'no warnings qw(once); $x'
    [ ~/tmp ] $