diff options
Diffstat (limited to 'modules/gdscript/tests/scripts/parser/features/lambda_callable.gd')
-rw-r--r-- | modules/gdscript/tests/scripts/parser/features/lambda_callable.gd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd b/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd index c3b2506156..17d00bce3c 100644 --- a/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd +++ b/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd @@ -1,4 +1,4 @@ func test(): - var my_lambda = func(x): - print(x) - my_lambda.call("hello") + var my_lambda = func(x): + print(x) + my_lambda.call("hello") |