RosettaCodeData/Task/Hello-world-Graphical/Scala/hello-world-graphical-3.scala
2016-12-05 22:15:40 +01:00

8 lines
165 B
Scala

import swing._
object HelloDotNetWorld {
def main(args: Array[String]) {
System.Windows.Forms.MessageBox.Show
("Goodbye, World!")
}
}