2024-12-10 15:21:28 +01:00

8 lines
98 B
Swift

extension Int {
static func random() -> Int {
random(in: Int.min...Int.max)
}
}