No 'do ... while()' syntax as yet.
Due to ambiguity, we've not yet added support for do .. while to Groovy
(source)
Then what would be the best way to do something like this:
def numRead = inputStream.read(fileBytes, 0, fileBytes.length);
do{
} while(numRead > 0);
(I know I can do that using a boolean, I just want to know if there's a "Groovy" way of doing it)