Skip to content

Instantly share code, notes, and snippets.

@rubencodes
Last active November 13, 2015 06:01
Show Gist options
  • Save rubencodes/098509d859f057effc8a to your computer and use it in GitHub Desktop.
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!
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