Contact: aviboots(AT)netvision.net.il
41,679 questions
54,344 answers
573 users
object Main extends App { val name = "Tom" val age = 80 val formattedString = String.format("%s %d", name, age) println(formattedString) } /* run: Tom 80 */