On Github NicolasRTT / devoxxFrance2013-review
Runnable job = new Runnable() {
@Override
public void run() {
System.out.println("Hello Zanox");
}
};
Runnable job = () -> {
System.out.println("Hello Zanox");
};
List strings = Arrays.asList("hello", "world", "!");
Collections.sort(strings, (s1, s2)-> s1.compareTo(s2));
System.out.println(strings);