c6ca09dc6f
This also fixes a typo in the `bitwise_float_right_operand.gd` test.
4 lines
92 B
GDScript
4 lines
92 B
GDScript
func test():
|
|
var x = 42
|
|
var my_lambda = func(): print(x)
|
|
my_lambda.call() # Prints "42".
|