Merge pull request #52090 from balloonpopper/bug52060

Correct null and boolean values being capitalised by the str command
This commit is contained in:
Max Hilbrunner
2021-08-27 21:05:47 +02:00
committed by GitHub
30 changed files with 93 additions and 82 deletions

View File

@ -1,3 +1,3 @@
GDTEST_OK
Name is equal
True
true

View File

@ -0,0 +1,7 @@
func test():
var null_var = null
var true_var:bool = true
var false_var:bool = false
print(str(null_var))
print(str(true_var))
print(str(false_var))

View File

@ -0,0 +1,4 @@
GDTEST_OK
null
true
false