dlang-book/book/04-массивы-ассоциативные-массивы-и-строки/src/chapter-4-5-4-1/app.d

20 lines
241 B
D

import std.stdio;
void main()
{
string str = "Hall\u00E5, V\u00E4rld!";
foreach (c; str)
{
write('[', c, ']');
}
writeln();
foreach (dchar c; str)
{
write('[', c, ']');
}
writeln();
}