mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			GDScript
		
	
	
	
	
	
# https://github.com/godotengine/godot/issues/64171
 | 
						|
 | 
						|
func test():
 | 
						|
	print("Compare ==: ", "abc" == &"abc")
 | 
						|
	print("Compare ==: ", &"abc" == "abc")
 | 
						|
	print("Compare !=: ", "abc" != &"abc")
 | 
						|
	print("Compare !=: ", &"abc" != "abc")
 | 
						|
 | 
						|
	print("Concat: ", "abc" + &"def")
 | 
						|
	print("Concat: ", &"abc" + "def")
 | 
						|
	print("Concat: ", &"abc" + &"def")
 |