Skip to content

Instantly share code, notes, and snippets.

@bitterfox
bitterfox / WebApp.java
Created July 24, 2016 17:41 — forked from denkspuren/WebApp.java
Shinya's Demo on https://youtu.be/op6zZDypPg8 in pure Java 8/9
import javafx.application.Application;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.web.WebView;
public class WebApp extends Application {
public static void main(String[] args) {
launch(args);
}