JavaCompilerCore/test/bytecode/javFiles/Faculty.jav

18 lines
231 B
Plaintext
Raw Normal View History

import java.lang.Integer;
2017-11-29 13:45:15 +00:00
class Faculty {
m () {
var fact = (Integer x) -> {
//if (x == 1) {
return x;
//}
//else {
//return x * (fact.apply(x-1));
//}
2017-11-29 13:45:15 +00:00
};
return fact;
}
}