Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
s = "Python" match s: case "Foo": print("Foo") case "Wii": print("Wii") case "Python": print("Python") case "YYI": print("YYI") case _: print("No match found.") ''' run: Python '''