16

New case statements

x = "hello"

match x:
  case "hello":
      print("hello")
    case "hi":
      print("hi")
    case _:
      print("default case")