8 lines
98 B
Swift
8 lines
98 B
Swift
|
|
extension Int {
|
|
|
|
static func random() -> Int {
|
|
random(in: Int.min...Int.max)
|
|
}
|
|
}
|