Is this a bug?

Kagamin spam at here.lot
Tue Oct 16 08:48:43 UTC 2018


You can simply group them:

t.on!(
handlers!(
   "abc", {
     writeln("abc");
   },

   "cde", {
     writeln("cde");
   }
)
);

handlers!(
   "abc", {
     writeln("abc");
   },

   "cde", {
     writeln("cde");
   }
).bind(t);


More information about the Digitalmars-d-learn mailing list