From be4f36b87e5939a3921d644dd9e03c9ebd81aa4d Mon Sep 17 00:00:00 2001 From: Danil Alexeev Date: Mon, 30 Jan 2023 14:29:07 +0300 Subject: Remove `@GDScript.str` (duplicate of `@GlobalScope.str`) --- doc/classes/@GlobalScope.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/classes/@GlobalScope.xml b/doc/classes/@GlobalScope.xml index 485c04da6d..8833ae4432 100644 --- a/doc/classes/@GlobalScope.xml +++ b/doc/classes/@GlobalScope.xml @@ -1271,7 +1271,13 @@ - Converts one or more arguments of any [Variant] type to [String] in the best way possible. + Converts one or more arguments of any [Variant] type to a [String] in the best way possible. + [codeblock] + var a = [10, 20, 30] + var b = str(a) + print(len(a)) # Prints 3 (the number of elements in the array). + print(len(b)) # Prints 12 (the length of the string "[10, 20, 30]"). + [/codeblock] -- cgit v1.2.3