RosettaCodeData/Task/Hello-world-Graphical/Scala/hello-world-graphical-2.scala
Ingy döt Net 776bba907c Sync
2013-10-27 22:24:23 +00: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!")
}
}
}