to_upper
Converts a string to uppercase.
to_upper(x:string) -> string
Description
Section titled “Description”The to_upper
function converts all characters in x
to uppercase.
Examples
Section titled “Examples”Convert a string to uppercase
Section titled “Convert a string to uppercase”from {x: "hello".to_upper()}
{x: "HELLO"}