in reply to Inconsistent for the sake of convenience
The while statement modifier works differently with do than with other statements.
print "This doesn't print.\n" while 2 + 2 == 5; do {print "But this prints once.\n"} while 2 + 2 == 5; [download]