mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
8 lines
157 B
D
8 lines
157 B
D
void main() {
|
|
string str;
|
|
stringify((chars) {str ~= chars; });
|
|
}
|
|
|
|
void stringify(scope void delegate(scope const char[]) sink) {
|
|
sink("oops");
|
|
}
|