fork download
  1. object Main extends App {
  2. val people = Map("John"->25,"Bill"->27)
  3. for ((person, age) <- people) {
  4. println(s"${person} is ${age} years old")
  5. }
  6. }
Success #stdin #stdout 0.42s 382016KB
stdin
Standard input is empty
stdout
John is 25 years old
Bill is 27 years old