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