8 lines
84 B
Plaintext
8 lines
84 B
Plaintext
|
class LambdaExpr2 {
|
||
|
|
||
|
op = ()->method();
|
||
|
|
||
|
method() {
|
||
|
return 2;
|
||
|
}
|
||
|
}
|