Skip to content

Instantly share code, notes, and snippets.

@teancom
Created June 8, 2014 20:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teancom/c4094604a7e7680db66b to your computer and use it in GitHub Desktop.
Save teancom/c4094604a7e7680db66b to your computer and use it in GitHub Desktop.
func greet(name: String = "David", day: String = "bleargh") -> String {
return "Hello \(name), today is \(day)."
}
greet("Bob", "Sunday")
func greet2(name: String, day: String) -> String {
return "Hello \(name), today is \(day)."
}
greet2("Bob", "Sunday")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment