Unify String and StringName
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
# 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")
|
||||
Reference in New Issue
Block a user