SZ
Size: a a a
SZ
V
V
V
VV
V
VV
SZ
V
enum Jonfir {
case jonfir(int: Int)
case jonfir(double: Double)
}
func jonfir(jonfir: Jonfir) {
switch jonfir {
case .jonfir(let int as Int):
print(int)
case .jonfir(let double as Double):
print(double)
}
}
jonfir(jonfir: .jonfir(int: 0))
VV
BB
МА
DD
HS
SZ
HS
SZ
HS
SZ
BB