The syntax won't win beauty pageants but I like how they retrofitted lambdas onto interfaces so you can do something like:<p><pre><code> Collections.sort(list, (Comparator) #(String a, String b) {
return a.compareToIgnoreCase(b);
});</code></pre>
Good to know that they at least work on it and dont delay it till jdk8. This will be a great addition to the jdk for alternative-language-developers just like MethodHandles allowing them to compete with Java performance-wise.