summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/parser/features/lambda_callable.gd
blob: 17d00bce3c06b264607791394dcfe24d53702815 (plain)
1
2
3
4
func test():
	var my_lambda = func(x):
		print(x)
	my_lambda.call("hello")