- or download this
print "this is bad", next;
- or download this
print("this is bad", next);
- or download this
($istrue) or print("this is bad"), next;
($istrue) or (print "this is bad"), next;
- or download this
($istrue) or do { print "this is bad"; next; };
- or download this
if (!$istrue) { print "this is bad"; next; }