Khác biệt giữa bản sửa đổi của “D (ngôn ngữ lập trình)”

Nội dung được xóa Nội dung được thêm vào
→‎top: AlphamaEditor, Executed time: 00:00:15.1095186 using AWB
n →‎Lập trình đồng bộ: replaced: ( → (, ) → ) using AWB
Dòng 73:
while (cont)
{
receive( // delegates are used to match the message type
(int msg) => writeln("int received: ", msg),
(Tid sender) { cont = false; sender.send(-1); },
(Variant v) => writeln("huh?") // Variant matches any type
);
}
}