book--hacking-with-swift/24-swift-extensions/playground-1.playground/Contents.swift

22 lines
242 B
Swift

import UIKit
extension Int {
mutating func increment() {
self += 1
}
var squared: Int {
return self * self
}
}
var myInt1 = 0
let myInt2 = 232
myInt1.increment()
//myInt2.plusOne()
//2.plusOne()