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