POSITION:028,114
COLOUR:STANDARD
TEXT:00,The opposite of lower() is upper(), which coverts any characters in both
TEXT:16,atoms and sequences that are between 'a' and 'z' to uppercase:
COLOUR:EUPHORIA
TEXT:32,include wildcard.e
TEXT:16,   = upper( )
COLOUR:POINTS
TEXT:00,ro         o
COLOUR:STANDARD
TEXT:32,A character string of "Euphoria" and "euphoria" passed to upper()
COLOUR:POINTS
TEXT:16,   o
COLOUR:STANDARD
TEXT:00,as   would produce a string of "EUPHORIA", which is then stored in the
TEXT:16,receiving variable   . With single atom values like 'z' or 122, upper()
COLOUR:POINTS
TEXT:00,                   ro
COLOUR:STANDARD
TEXT:16,will store 'Z' or 90 in the receiving variable.
TEXT:32,A demo program is available to show how upper() and lower() works.
