sunlang/tests/test_if.sun

10 lines
128 B
Plaintext
Raw Permalink Normal View History

2025-12-09 13:23:45 -03:00
function test(a) {
var x = 10;
if (a > x) {
return 1;
} else {
x = x + 1;
return x;
}
}