virtualx-engine/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
Adam Scott 44d1d72af1 Add GDScript .editorconfig rules
- Uniformize `.gd` unit test files indentation to tabs (where needed)
2023-01-10 12:25:35 -05:00

4 lines
75 B
GDScript

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