Help for this page

Select Code to Download


  1. or download this
    print "this is bad", next;
    
  2. or download this
    print("this is bad", next);
    
  3. or download this
    ($istrue) or print("this is bad"), next;
    ($istrue) or (print "this is bad"), next;
    
  4. or download this
    ($istrue) or do { print "this is bad"; next; };
    
  5. or download this
    if (!$istrue) { print "this is bad"; next; }