blob: ca29b5f5def2d7a011321a72e74da7b73f03fee9 [file] [log] [blame]
function test(a) {
switch (a) {
default: return "cool"
case "xxx": print("got zero"); break;
case "ciao": case "ciao2": return 123
case "hello": return 321
}
return 444
}
print(test("xxx"))
print(test("hello"))
print(test("ciao"))
print(test("ciao2"))
print(test(9))