- :char
- :string
- or :nothing
upper
convert given string to uppercase
Parameters
upper string :char :string :literal
Returns
Examples
copyprint upper "hello World, 你好!" ; "HELLO WORLD, 你好!"
copystr: "hello World, 你好!" upper 'str ; str: "HELLO WORLD, 你好!"
copych: `a` upper ch ; => `A`