mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
	
	
		
			12 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
		
		
			
		
	
	
			12 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			GDScript3
		
	
	
	
	
	
|   | # 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") |