7 lines
61 B
GDScript3
7 lines
61 B
GDScript3
|
func args(a, b):
|
||
|
print(a)
|
||
|
print(b)
|
||
|
|
||
|
func test():
|
||
|
args(1,)
|