8 lines
89 B
Swift
8 lines
89 B
Swift
import Foundation
|
|
|
|
extension Bool {
|
|
var intValue: Int {
|
|
self ? 1 : 0
|
|
}
|
|
}
|