10 lines
279 B
Kotlin
Vendored
10 lines
279 B
Kotlin
Vendored
import javax.swing.SwingUtilities
|
|
|
|
fun main(args : Array<String>) {
|
|
SwingUtilities.invokeLater(object : Runnable {
|
|
override fun run() {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
})
|
|
}
|