summaryrefslogtreecommitdiff
path: root/modules/gdscript/tests/scripts/runtime/features/string_stringname_equivalent.gd
blob: f8bd46523e43b830f9354e155e0a3ec3a1acf450 (plain)
1
2
3
4
5
6
7
8
9
10
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")