mirror of
https://github.com/Redot-Engine/redot-engine.git
synced 2025-12-06 07:17:42 -05:00
5 lines
75 B
GDScript
5 lines
75 B
GDScript
func test():
|
|
var my_lambda = func(x):
|
|
print(x)
|
|
my_lambda.call("hello")
|