ceu-lang/ceu

Internal event with option type

Opened this issue · 0 comments

event int? e;
par do
    var int? v = await e;
    escape v!;
with
    emit e(10);
end