7 lines
70 B
GDScript
7 lines
70 B
GDScript
func args(a, b):
|
|
print(a)
|
|
print(b)
|
|
|
|
func test():
|
|
args(1,)
|