Is this intentional behaviour or an oversight?
Example: ```d module app; import std.stdio; import std.file; void main(string[] args) { string a = "`a\r\n\r\nb`\r\n"; File("test.txt", "w").write(a); } ``` Content of text.txt: ``` `a\r\r\n\r\r\nb\`\r\r\n ```