//: c2x9.scala /** The first Thinking in Scala example program. * Displays a string and today's date. * * @author Bruce Eckel * @author www.BruceEckel.com * @translator (into Scala) Doug Landauer * @version 2.0 */ package x; object HelloDate { /** Sole entry point to class & application * * @param args array of string arguments * @return No return value * @exception exceptions No exceptions thrown */ def main ( args : Array[String] ) = { Console.println("Hello, it's: "); Console.println(new java.util.Date()); } } ///:~