virtualx-engine/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
Hugo Locurcio c6ca09dc6f
Add more integration tests to the GDScript test suite
This also fixes a typo in the `bitwise_float_right_operand.gd` test.
2021-09-15 19:57:39 +02:00

4 lines
87 B
GDScript

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