blob: 5a44a12c772614ed3d4d20e89157c552b4a6132c [file] [log] [blame]
def tail(int jjj) {
println jjj
if (true) {
return <selection>fact</selection>(jjj)
}
else {
return 42
}
}
int fact(int n) {
if (n > 0) {
return n * fact(n - 1)
}
return 1
}
-----
def tail(int jjj) {
println jjj
if (true) {
if (jjj > 0) {
return jjj * fact(jjj - 1)
}
return 1
}
else {
return 42
}
}
int fact(int n) {
if (n > 0) {
return n * fact(n - 1)
}
return 1
}