Swift - Write program to add parameter alias

Requirements

Declare a function so that you can call it like this:

myFunction ("abc", withSomething : "xyz")

Demo

func myFunction(arg1:String, #withSomething:String) {

}

Related Exercise