Last active
September 27, 2016 06:41
-
-
Save VenkataRaju/9bb0af2240ec145f1e246324178a8167 to your computer and use it in GitHub Desktop.
Basic JavaFX Application Written In Kotlin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class BasicKolinJavaFxApp : Application | |
{ | |
override fun start(primaryStage: Stage) | |
{ | |
primaryStage.setTitle("My First JavaFX App"); | |
primaryStage.show(); | |
} | |
fun main(args: Array<String>) | |
{ | |
Application.launch(BasicKolinJavaFxApp::class.java, *args) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment