mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			212 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
| func i_take_lambda(lambda: Callable, param: String):
 | |
| 	lambda.call(param)
 | |
| 
 | |
| 
 | |
| func test():
 | |
| 	var my_lambda := func this_is_lambda(x):
 | |
| 		print("Hello")
 | |
| 		print("This is %s" % x)
 | |
| 
 | |
| 	i_take_lambda(my_lambda, "a lambda")
 | 
