Table creation: Difference between revisions

m
→‎{{header|REXX}}: re-instated original whitespace.
(J: bugfix)
m (→‎{{header|REXX}}: re-instated original whitespace.)
Line 520:
 
=={{header|REXX}}==
REXX doesn't have tables (structures), as there is only one data type in REXX:   '''character'''.
REXX: &nbsp; <code>character</code>
 
However, tables (or structures) can be constructed by using stemmed arrays,; &nbsp; the index would (should) be
<br>a unique identifier, &nbsp; something akin to a SSN &nbsp;(Social Security Number)&nbsp; or something similar.
the index would (should) be a
<br>unique identifier, something akin to a
SSN (Social Security Number) or something similar.
<lang rexx> id = 000112222 /*could be a SSN or some other unique ID (or number).*/
 
Line 538 ⟶ 535:
table.id.!town = 'Gotham City'
table.id.!state = 'NY'
table.id.!zip = '12345-6789'</lang><br><br>
 
=={{header|Ring}}==