JavaPatternMatching/resources/javFiles/Lambda.jav

14 lines
139 B
Plaintext
Raw Permalink Normal View History

2018-09-07 02:35:58 +00:00
class Apply { }
2017-04-19 13:26:37 +00:00
public class Lambda {
m () {
2018-09-07 02:35:58 +00:00
var lam1 = (x) -> {
return x;
};
return lam1.apply(new Apply());
}
}