Subject: | default EOL/encoding settings are worse than useless on windows |
I just tried this on windows:
csv( in => $arguments, out => "file.csv" );
The result was lines separated by 0D 0D 0A, i.e. \r\r\n.
I had to do add this to get non-broken CSV:
enc => ":raw",
Would be nice if it came with sane defaults on windows. :)