Talk:Word wrap: Difference between revisions

fn('xxx.txt') Returns 'xxx'
(→‎REXX Timings: possible discrepancy. -- ~~~~)
(fn('xxx.txt') Returns 'xxx')
Line 95:
End
</lang>
<lang rexx>/*REXX pgm ww0 reads a file and displays it (with word wrap to the screen). */
Call time 'R'
parse arg iFID width /*get optional arguments from CL.*/
Line 119:
o: Return lineout(oid,arg(1))</lang>
<lang rexx>/*REXX pgm ww1 reads a file and displays it (with word wrap to the screen). */
Call time 'R'
parse arg iFID width justify _ . /*get optional CL args.*/
Line 172:
 
<lang rexx>
/* REXX ww2 ***************************************************************
* 20.08.2013 Walter Pachl "my way"
**********************************************************************/
Line 241:
</pre>
It seems that the REXX version 2 isn't handling leading or imbedded blanks. -- [[User:Gerard Schildberger|Gerard Schildberger]] ([[User talk:Gerard Schildberger|talk]]) 21:40, 21 August 2013 (UTC)
 
:: correct. pls try to live without that "feature". for testing, pls replace fn(fid) with "long"--[[User:Walterpachl|Walterpachl]] ([[User talk:Walterpachl|talk]]) 21:56, 21 August 2013 (UTC)
2,289

edits