mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
8 lines
120 B
Plaintext
8 lines
120 B
Plaintext
function f(x) {
|
|
var a = 2, b = 1;
|
|
while (a < b);
|
|
for (;;);
|
|
if (a < b); else;
|
|
do {} while (a < b);
|
|
}
|