Reflection/List properties: Difference between revisions

Content deleted Content added
Dinosaur (talk | contribs)
m →‎{{header|Fortran}}: input and output.
Dinosaur (talk | contribs)
Line 251: Line 251:
}
}
</pre>
</pre>

=={{header|PL/I}}==
<code>PUT DATA(X)</code> will send to SYSOUT the value(s) of X prefixed by the name(s), formatted appropriately for single/double bit/integer/real/complex, character, ''etc.'' whether <code>X</code> is a single datum, an array, a data structure, ''etc.'' A list of items may be specified, not just the single <code>X</code> and for input, the word is <code>GET</code>. Similarly, <code>PUT STRING(TEXT) DATA(X)</code> will place such output in a character variable, which may have to be large...


=={{header|PowerShell}}==
=={{header|PowerShell}}==