Help for this page

Select Code to Download


  1. or download this
        perl -e '$x=1;print 1 if $x or print 0'
    
  2. or download this
    my $x = 0;
    &one if $x or &zero;
    ...
        print "zero";
        0;
    }