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

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