aboutsummaryrefslogtreecommitdiff
path: root/examples/bot.pl6
blob: 3bd14cc3c24efce506efbb3a47afc23c75cb724f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
use v6;
use lib 'lib';
use IRC::Client;
# use IRC::Client::Plugin::HNY;

my $irc = IRC::Client.new(
    :host('irc.freenode.net'),
    :debug,
    plugins => [
        # IRC::Client::Plugin::HNY.new,
    ]
).run;