godot-module-template/engine/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd

5 lines
75 B
GDScript
Raw Permalink Normal View History

2025-01-17 15:36:38 +00:00
func test():
var my_lambda = func(x):
print(x)
my_lambda.call("hello")