12 lines
271 B
Scala
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!")
|
|
}
|
|
}
|
|
}
|