hello-world.scala 95 B

12345
  1. object HelloWorld {
  2. def main(args: Array[String]) {
  3. println("Hello World!")
  4. }
  5. }