RosettaCodeData/Task/Hello-world-Graphical/Scala/hello-world-graphical-2.scala

13 lines
271 B
Scala
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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!")
}
}
}