7 lines
116 B
Text
7 lines
116 B
Text
switch x {
|
|
case true:
|
|
# implicit fallthrough
|
|
case null: 0
|
|
# no fallthrough
|
|
default: 1
|
|
}
|