The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

interface Callback {
  void reply (in string msg);
};

interface Sender {
  void message (in Callback obj, in string msg);
};