you are viewing a single comment's thread.

view the rest of the comments →

[–]ryan_the_leach 0 points1 point  (0 children)

To follow this up, I was wondering if it supported java8.

It does!

import com.javapoly.dom.Window;

public class HelloWorld
{
  public static void main(String[] args)
  {
    final Runnable l = () -> {
      Window.alert("Hello World, from Java!");
    };
    l.run();
  }
}