import javafx.application.Platform;

public class SimpleExitTest {
    public static void main(String[] args) {
        Platform.exit();
    }
}
