A method that accepts stage initialisation code like `Application::start()` without the need to call `Application.launch()`. ~~~kotlin setupStage { val stage = Stage() stage.title = "hello" stage.scene = Scene(StackPane(Label("hello")), 200.0, 200.0) stage.show() } ~~~