RosettaCodeData/Task/String-case/REXX/string-case-3.rexx

6 lines
381 B
Rexx
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
x = 'alphaBETA' /*define a string to a REXX variable. */
y = upper(x) /*uppercase X and store it ───► Y */
z = lower(x) /*lowercase X " " " ───► Z */
2013-04-11 01:07:29 -07:00
2016-12-05 22:15:40 +01:00
/*Some REXXes don't support the UPPER and LOWER BIFs (built-in functions).*/