// Prints 0 through 9 var i = 0; while (i<10) { print(i); i = i + 1; }