mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-30 21:21:10 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
|   | func test(): | ||
|  | 	# Line breaks are allowed within parentheses. | ||
|  | 	if ( | ||
|  | 		1 == 1 | ||
|  | 		and 2 == 2 and | ||
|  | 		3 == 3 | ||
|  | 	): | ||
|  | 		pass | ||
|  | 
 | ||
|  | 	# Alternatively, backslashes can be used. | ||
|  | 	if 1 == 1 \ | ||
|  | 		and 2 == 2 and \ | ||
|  | 		3 == 3: | ||
|  | 		pass |