Skip to content

Instantly share code, notes, and snippets.

View alidinc's full-sized avatar

Ali Dinç alidinc

View GitHub Profile
import Foundation
enum Slot: CaseIterable {
case black, green, white, yellow
static func random() -> Slot {
Slot.allCases.randomElement()!
}
var description: String {