This page is no longer maintained — Please continue to the home page at www.scala-lang.org

Snippet: Varargs

package examples

/** Using Java varargs */
object varargs extends Application {
  val msg = java.text.MessageFormat.format(
    "At {1,time} on {1,date}, there was {2} on planet {0}.",
    "Hoth", new java.util.Date(), "a disturbance in the Force")
  println("Message="+msg)
}

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland