DLiteScript
Playground
Documentation
strings.toUpper
Converts a string to uppercase.
Examples
1
printf
(
"%s\n"
,
strings
.
toUpper
(
"hello World"
))
// HELLO WORLD