mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-30 21:21:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			205 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
| 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
 | 
