mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
6 lines
85 B
D
6 lines
85 B
D
void main() {
|
|
string str = q"_DLANG
|
|
123
|
|
_DLANG";
|
|
assert( str == "123\n" );
|
|
}
|