JavaPatternMatching/BCEL/bcelifier/Lambda1.java

9 lines
109 B
Java
Raw Normal View History

2015-08-27 11:36:14 +00:00
package bcelifier;
public class Lambda1 {
Runnable methode(){
return ()->System.out.println(this);
}
}