10 Mar
2012
10 Mar
'12
11:14 p.m.
"CD" == Charles Duffy <charles@dyfis.net> writes:
CD> The newline option just indicates which kind of newlines to use in CD> places where newlines would normally be selected -- it doesn't make CD> lists automatically newline-separated. CD> Maybe you want something more like this: CD> declare option output:format "no"; CD> declare option output:method "text"; CD> string-join(("one", "two", "three"), " ") What an embarrassment that one must hardcode record separators or whatever. I feel like I am back forty years ago with http://en.wikipedia.org/wiki/NOS_(software) Let me out of here! It should be as easy as $ seq 1 3 1 2 3 $ perl -le 'print for 1..3' 1 2 3 Please fix this!