17 lines
235 B
Swift
Raw Permalink Normal View History

public enum IDE: String {
case vscode
case xcode
}
// MARK: - Randomable
extension IDE: Randomable {
// MARK: Functions
static func random() -> IDE {
.allCases.randomElement() ?? .xcode
}
}