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

my $irc = IRC::Client.new(
    :host('10.10.11.12'),
    :channels<#perl6bot #zofbot>
    :debug,
    plugins => [
        IRC::Client::Plugin::Debugger.new
    ]
).run;