Help for this page

Select Code to Download


  1. or download this
    print "no rows\n", exit unless $rows;
    print "we seem to have rows.\n";
    __END__
    
  2. or download this
    print "no rows\n" and exit unless $rows;
    print "we seem to have rows.\n";
    __END__
    no rows