xxx

Posted on April 13, 2010, 2:41 pm UTC by xxx (about 1 year ago)

Code (highlighted for Scala)

  1. // hello world in scala
  2.  
  3. object HelloWorld {
  4.  
  5.   def main(args: Array[String]) {
  6.     println("Hello, world!")
  7.   }
  8.  
  9. }