dlang-book/02-основные-типы-данных-выражения/src/chapter-2-2-5/app.d

8 lines
232 B
D
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import std.stdio;
void main()
{
auto crlf = "\r\n";
auto a = "В этой стро­ке есть \"двой­ные ка­выч­ки\", а так­же
пе­ре­вод стро­ки, да­же два" ~ "\n";
}