Skip to main content
DLiteScript
Playground
Documentation
DLiteScript - A Delightfully Simple Scripting Language
Documentation
Standard Library
strings Namespace
strings.toUpper
strings.toUpper
Converts a string to uppercase.
Examples
1
printf
(
"%s\n"
,
strings
.
toUpper
(
"hello World"
))
// HELLO WORLD
Improve this page