15 lines
172 B
Plaintext
15 lines
172 B
Plaintext
|
class Faculty {
|
||
|
|
||
|
Integer mul(Integer x, Integer y) {
|
||
|
return x;
|
||
|
}
|
||
|
|
||
|
m () {
|
||
|
|
||
|
var fact = (Integer x) -> {
|
||
|
return mul(x, x);
|
||
|
};
|
||
|
return fact;
|
||
|
}
|
||
|
}
|