Files
react/compiler/crates/react_hermes_parser/tests/fixtures/ssa-while.js
2024-04-02 16:49:31 -07:00

9 lines
83 B
JavaScript

function foo() {
let x = 1;
while (x < 10) {
x = x + 1;
}
return x;
}