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