RosettaCodeData/Task/Hello-world-Graphical/Kotlin/hello-world-graphical.kotlin
2016-12-05 22:15:40 +01:00

14 lines
504 B
Text

import java.awt.*
import javax.swing.*
fun main(args: Array<String>) {
JOptionPane.showMessageDialog(null, "Goodbye, World!") // in alert box
with(JFrame("Goodbye, World!")) { // on title bar
layout = FlowLayout()
add(JButton("Goodbye, World!")) // on button
add(JTextArea("Goodbye, World!")) // in editable area
pack()
defaultCloseOperation = JFrame.EXIT_ON_CLOSE
isVisible = true
}
}