Polymorphic copy: Difference between revisions

m
→‎{{header|REXX}}: added wording to the REXX section header.
(→‎{{header|REXX}}: added the REXX computer programming language.)
m (→‎{{header|REXX}}: added wording to the REXX section header.)
Line 1,793:
=={{header|REXX}}==
In the REXX language, every variable is a string   (whether or not they contain characters or numerals).
<br>However, a variables' type (by REXX's definition) can be determined/inferred from it's attributes (datatypes).
<lang rexx>/*REXX program to copy (polymorphically) one variable's value into another variable. */
b= 'old value.'