mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +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;
|