RosettaCodeData/Task/Hello-world-Graphical/Scala/hello-world-graphical-2.scala
2023-07-01 13:44:08 -04:00

12 lines
271 B
Scala

import swing._
object GoodbyeWorld extends SimpleSwingApplication {
def top = new MainFrame {
title = "Goodbye, World!"
contents = new FlowPanel {
contents += new Button ("Goodbye, World!")
contents += new TextArea("Goodbye, World!")
}
}
}