Skip to content

Instantly share code, notes, and snippets.

@lindXdeep
Last active August 23, 2023 11:32
Show Gist options
  • Save lindXdeep/ec53daa9b3085a08758ffe30c44611b5 to your computer and use it in GitHub Desktop.
Save lindXdeep/ec53daa9b3085a08758ffe30c44611b5 to your computer and use it in GitHub Desktop.
templates
import javafx.application.Application;
import javafx.stage.Stage;
/**
* App
*/
public class App extends Application {
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage stage) throws Exception {
stage.show();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment