2021-04-19 20:50:52 +02:00
|
|
|
func test():
|
|
|
|
|
var i = "Hello"
|
|
|
|
|
match i:
|
|
|
|
|
"Hello":
|
|
|
|
|
print("hello")
|
|
|
|
|
"Good bye":
|
|
|
|
|
print("bye")
|
|
|
|
|
_:
|
|
|
|
|
print("default")
|
|
|
|
|
|
|
|
|
|
var j = 25
|
|
|
|
|
match j:
|
|
|
|
|
26:
|
|
|
|
|
print("This won't match")
|
|
|
|
|
_:
|
|
|
|
|
print("This will match")
|
2024-02-28 17:23:11 +03:00
|
|
|
|
|
|
|
|
match 0:
|
|
|
|
|
pass
|