//those following function are partially applied (note the vals) val showInEn = showMessage(_:String)("en") val showInFr = showMessage(_:String)("fr")
//call it will output Hello! in the REPL val showWelcomeInEn = showInEn("welcome") //call it will output Salut! in the REPL val showWelcomeInFr = showInFr("welcome")