mirror of
https://github.com/ChaiScript/ChaiScript.git
synced 2025-12-07 01:06:54 +08:00
20 lines
209 B
ChaiScript
20 lines
209 B
ChaiScript
var total = 0;
|
|
|
|
switch(2) {
|
|
case (1) {
|
|
total += 1;
|
|
}
|
|
case (2) {
|
|
total += 2;
|
|
}
|
|
case (3) {
|
|
total += 4;
|
|
break;
|
|
}
|
|
case (4) {
|
|
total += 8;
|
|
}
|
|
}
|
|
|
|
assert_equal(total, 6)
|