SeenPlugin.__anonymous

This mixin adds shorthand functions to proxy calls to kameloso.messaging functions, *partially applied* with the main thread ID, so they can easily be called with knowledge only of the plugin symbol.

plugin.chan("#d", "Hello world!");
plugin.query("kameloso", "Hello you!");

with (plugin)
{
    chan("#d", "This is convenient");
    query("kameloso", "No need to specify plugin.state.mainThread");
}