while (<condition>) { <block> }
int i = 1; while (i < = 10) { println(i); i++; }
Last updated 3 months ago