1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-16 14:00:40 +00:00

Correct null and boolean values being capitalised by the str command

This commit is contained in:
Balloonpopper
2021-08-25 16:37:40 +10:00
parent bb0122c933
commit 4fae7ae9dc
30 changed files with 93 additions and 82 deletions

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