match.gd 215 B

12345678910111213141516
  1. func test():
  2. var i = "Hello"
  3. match i:
  4. "Hello":
  5. print("hello")
  6. "Good bye":
  7. print("bye")
  8. _:
  9. print("default")
  10. var j = 25
  11. match j:
  12. 26:
  13. print("This won't match")
  14. _:
  15. print("This will match")