// super simple while test var i=0,j=5; while (j-->0) { print(j); i++;} result = i==5;