mirror of
https://github.com/tiennm99/godot.git
synced 2026-07-16 18:16:28 +00:00
5 lines
87 B
GDScript
5 lines
87 B
GDScript
func test():
|
|
var my_lambda = func(x):
|
|
print(x)
|
|
my_lambda.call("hello")
|