std.string.splitLines(``) now returns [], but i expect it to return [ `` ]
why? empty given you empty makes sense to me?
No your wrong Temtaime,because [``] as result would mean that the input argument contained one empty string: _______________ import std.string; void main() { assert( splitLines("\n") == [``]); // ok } _______________