1
0
mirror of https://github.com/fluencelabs/assemblyscript synced 2025-06-18 17:31:29 +00:00
Files
assemblyscript/tests/parser/while.ts

11 lines
73 B
TypeScript

while (1) {
;
}
while (false) {
;
}
while ("str") {
;
}
while (1);