Created
June 2, 2017 02:16
-
-
Save danielvlopes/675695963c4b2d3a3cc4dc52937ff7ec 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
| func logMessage(message message:String, | |
| withPrefix prefix: NSString, | |
| andSuffix suffix: NSString) { | |
| print("\(prefix)-\(message)-\(suffix)") | |
| } | |
| logMessage(message: "QWERTY", withPrefix: "***", andSuffix: "$$$") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment