In CoffeeScript, the while loop comes standard:
while
while x() y()
However, the following1 doesn\'t work:
I found this could be accomplished through a short circuit conditional:
flag = y() while not flag? or x()