File size distribution: Difference between revisions

m
→‎{{header|REXX}}: changed wording in the output section comments.
m (→‎{{header|REXX}}: increased numeric digits to handle extremely large disks, optimized code for reading of the workfile.)
m (→‎{{header|REXX}}: changed wording in the output section comments.)
Line 465:
/*──────────────────────────────────────────────────────────────────────────────────────*/
commas: parse arg _; do jc=length(_)-3 to 1 by -3; _=insert(',', _, jc); end; return _</lang>
This REXX program makes use of &nbsp; '''LINESIZE''' &nbsp; REXX program (or BIF) which is used to determine the screen width (or linesize) of the terminal (console) so as to maximize the width of the histogram.
<br>The &nbsp; '''LINESIZE.REX''' &nbsp; REXX program is included here &nbsp; ──► &nbsp; [[LINESIZE.REX]].<br>