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