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

13 lines
271 B
Scala
Raw Permalink Normal View History

2013-04-10 21:29:02 -07: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!")
}
}
}