Files
engine/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
T

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

5 lines
75 B
GDScript
Raw Normal View History

func test():
2022-12-26 11:24:17 -05:00
var my_lambda = func(x):
print(x)
my_lambda.call("hello")