Aufzweig mit rohen Werten schnell
enum Size : Int {
case small = 10
case medium = 12
case large = 14
}
// access raw value of python case
var result = Size.small.rawValue
print(result)
SAMER SAEID