Distinct palindromes within decimal numbers: Difference between revisions

m
→‎{{header|REXX}}: changed the program title comment.
m (→‎{{header|REXX}}: added the extra strings used by another programming language entry.)
m (→‎{{header|REXX}}: changed the program title comment.)
Line 334:
=={{header|REXX}}==
This REXX version can handle strings or numbers.
<lang>/*REXX programpgm finds distinct palindromes contained in substrings (of (decimal numbers#s or strings). */
parse arg LO HI mL $$ /*obtain optional arguments from the CL*/
if LO='' | LO="," then LO= 100 /*Not specified? Then use the default.*/