On 2/8/2015 4:09 PM, David Held wrote:
    auto data = appender!(string[]);
    ...
    data.put(someString);
[...]

Never mind. someString is actually the result of stdin.byLine(), which returns a char[], not a string. I didn't notice this until just now. .idup fixes this just fine (although, I suppose changing it to char[][] might be even better).

Dave

Reply via email to