mirror of
https://github.com/espruino/Espruino.git
synced 2026-01-18 14:37:05 +00:00
6 lines
89 B
JavaScript
6 lines
89 B
JavaScript
// super simple while test
|
|
|
|
var i=0,j=5;
|
|
while (j-->0) { print(j); i++;}
|
|
result = i==5;
|