to_upper(s: utf8) → utf8

Category: [strings](builtinsstrings)_

Uppercase every character of a string.

ParameterTypeDescriptionRemarks
sutf8The string to uppercase.
returnsutf8The uppercased string.
wcl
to_upper("abc")   // uppercase every character → "ABC"