Talk:Ordered words: Difference between revisions

m
→‎A bug (which was not really a bug) in Rexx solution: added a REXX comment showing the ''dead'' code. -- ~~~~
m (→‎A bug (which was not really a bug) in Rexx solution: had to use PRE to force proper formatting. -- ~~~~)
m (→‎A bug (which was not really a bug) in Rexx solution: added a REXX comment showing the ''dead'' code. -- ~~~~)
Line 295:
/*──────────────────────────────────UPPERCASE2 subroutine────────────*/
uppercase2: procedure
parse arg a /*<-------------------------------------- dead code. */
parse arg a
a=translate(arg(1),'ÄÖÜ',"äöü") /* translate lowercase umlaute */
a=changestr("ß",a,'SS') /* replace ß with SS */