forked from JavaTX/JavaCompilerCore
10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
|
class Faculty2 {
|
||
|
|
||
|
m () {
|
||
|
|
||
|
var fact = (Integer x) -> {
|
||
|
return x;
|
||
|
};
|
||
|
return fact;
|
||
|
}
|
||
|
}
|