Contact: aviboots(AT)netvision.net.il
41,157 questions
53,648 answers
573 users
let ch: Character = "b" switch ch { case "a", "c", "d", "e": print("a, c, d, e") case "b", "w", "x", "y", "f", "g": print("b, w, x, y, f, g") default: print("default") } /* run: b, w, x, y, f, g */