Files
METH_Transcendence/site/game/node_modules/stats/test/fixtures/while.js
2024-07-30 20:19:29 +02:00

9 lines
95 B
JavaScript

out: while (foo) {
if (bar) continue;
break out;
}
do {
console.log(foo);
} while(bar);