14 lines
195 B
V
14 lines
195 B
V
match true {
|
|
boolean_expression1 {
|
|
statements
|
|
}
|
|
boolean_expression2 {
|
|
other
|
|
statements
|
|
}
|
|
else {
|
|
last
|
|
resort
|
|
statements
|
|
}
|
|
}
|