Unify String and StringName
This commit is contained in:
parent
f3e6750a7e
commit
e79be6ce07
28 changed files with 1450 additions and 254 deletions
|
|
@ -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")
|
||||
Loading…
Add table
Add a link
Reference in a new issue