Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 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 */