15 lines
172 B
Plaintext
Raw Normal View History

2017-11-29 14:45:15 +01:00
class Faculty {
Integer mul(Integer x, Integer y) {
return x;
}
m () {
var fact = (Integer x) -> {
return mul(x, x);
};
return fact;
}
}