Advertisement
Guest User

Untitled

a guest
Dec 5th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. extension Int {
  2. mutating func square() {
  3. self = self * self
  4. }
  5. mutating func abs() {
  6. self = abs(self)
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement