Skip to content

Instantly share code, notes, and snippets.

@memfrag
Last active August 29, 2015 14:04
Show Gist options
  • Save memfrag/c4d6e116486a28492cb6 to your computer and use it in GitHub Desktop.
Save memfrag/c4d6e116486a28492cb6 to your computer and use it in GitHub Desktop.
[Swift] Squared Operator
operator postfix ** {}
postfix func ** (value: Int) -> Int {
return value * value
}
let a = 3** + 1
// a now contains 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment