7 lines
72 B
GDScript3
7 lines
72 B
GDScript3
|
|
func test():
|
||
|
|
match null:
|
||
|
|
null:
|
||
|
|
print('null matched')
|
||
|
|
_:
|
||
|
|
pass
|