Help for this page

Select Code to Download


  1. or download this
    14:26 >perl -we "my $s = qq[0\n]; printf qq[%s\n], ($s ? 'true' : 'fal
    +se');"
    true
    
    14:31 >
    
  2. or download this
    #! perl
    use strict;
    ...
    1
    0
    42
    
  3. or download this
    for ($_ = <DATA>; defined $_; $_ = <DATA>)
    
  4. or download this
    print "<$_>\n" for <DATA>;
    
  5. or download this
    print "<$_>\n" while <DATA>;