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