Gawk loops

From wikinotes

while loops

var = 0;
while ( var < 10 ) {
   var += 1;
}