godot/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
87 B
GDScript3
Raw Normal View History

func test():
var my_lambda = func(x):
print(x)
my_lambda.call("hello")