12 lines
140 B
Plaintext
Raw Normal View History

import java.lang.Integer;
2017-11-29 14:45:15 +01:00
2018-05-02 20:54:07 +02:00
public class Lambda {
2017-11-29 14:45:15 +01:00
2018-05-02 20:54:07 +02:00
m () {
var lam1 = (Integer x) -> {
return x * x;
2018-05-02 20:54:07 +02:00
};
return lam1;
2018-05-02 20:54:07 +02:00
}
2017-11-29 14:45:15 +01:00
}