9 lines
200 B
Kotlin
9 lines
200 B
Kotlin
import javax.swing.JFrame
|
|
|
|
fun main(args : Array<String>) {
|
|
JFrame("Title").apply {
|
|
setSize(800, 600)
|
|
defaultCloseOperation = JFrame.EXIT_ON_CLOSE
|
|
isVisible = true
|
|
}
|
|
}
|