Created
August 5, 2018 18:42
-
-
Save vialyx/b884e544a46bccfe025ab1d95f1f11be to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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