fork download
  1. object Main extends App {
  2. def repeatedParameterMethod(x: Int, y: String, z: Any*) = {
  3. "%d %ss can give you %s".format(x, y, z.mkString(", "))
  4. }
  5. print( repeatedParameterMethod(3, "egg", List("a delicious sandwich", "protein", "high cholesterol")) )
  6. }
Success #stdin #stdout 0.39s 322496KB
stdin
Standard input is empty
stdout
3 eggs can give you List(a delicious sandwich, protein, high cholesterol)