6 lines
224 B
Text
6 lines
224 B
Text
switch[and] .x nxor, .y nxor {
|
|
case true: ... # both true
|
|
case true, false: ... # first true, second false
|
|
case false, true: ... # first false, second true
|
|
default: ... # both false
|
|
}
|