Skip to content

Instantly share code, notes, and snippets.

@vialyx
Created August 5, 2018 18:42
Show Gist options
  • Save vialyx/b884e544a46bccfe025ab1d95f1f11be to your computer and use it in GitHub Desktop.
Save vialyx/b884e544a46bccfe025ab1d95f1f11be to your computer and use it in GitHub Desktop.
typealias FunctionResult = (typleNameArgument: String, typleCountArgument: Int)
func functionName(externalArgumentName internalArgumentName: String = "defaultValue") -> FunctionResult {
return (internalArgumentName, 1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment