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