Skip to content

Instantly share code, notes, and snippets.

@rpearce
Created August 23, 2015 16:24
Show Gist options
  • Save rpearce/ebe67a138b41f11b8404 to your computer and use it in GitHub Desktop.
Save rpearce/ebe67a138b41f11b8404 to your computer and use it in GitHub Desktop.
func greet(name: String, day: String, special: String) -> String {
return "Hello \(name), today is \(day), and the special is \(special)."
}
greet("Bob", day: "Tuesday", special: "Catfish")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment