RosettaCodeData/Task/Hello-world-Graphical/Scala/hello-world-graphical-3.scala
2023-07-01 13:44:08 -04:00

8 lines
165 B
Scala

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