Last active
November 13, 2015 06:01
-
-
Save rubencodes/098509d859f057effc8a to your computer and use it in GitHub Desktop.
Force of habit: I keep trying to use console.log in Swift, to no avail. No longer!
This file contains 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
class console { | |
class func log(arg : Any) { | |
print(arg) | |
} | |
} | |
console.log("Hello World!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment