aboutsummaryrefslogtreecommitdiff
path: root/examples/bot.pl6
blob: f2b69ea45c0c7dbd29db10fe8045f55eb0b8206d (plain)
1
2
3
4
5
6
7
8
9
10
11
use v6;
use lib 'lib';
use IRC::Client;
use IRC::Client::Plugin::HNY;
say "42";
my $irc = IRC::Client.new(
    :host('10.10.11.12'),
    plugins => [
        IRC::Client::Plugin::HNY.new,
    ]
).run;