mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-26 03:04:31 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			130 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			130 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
| func test():
 | |
| 	# `and` should be used instead.
 | |
| 	if true && true:
 | |
| 		pass
 | |
| 
 | |
| 	# `or` should be used instead.
 | |
| 	if false || true:
 | |
| 		pass
 | 
