aboutsummaryrefslogtreecommitdiff
path: root/examples/bot.pl6
blob: 255a0f40c1ba4cd4d3e0c9eebdd35afee49334dd (plain)
1
2
3
4
5
6
7
8
9
use v6;
use lib 'lib';
use IRC::Client;

my $irc = IRC::Client.new(
    :nick('IRCBot' ~ now.Int)
    :debug
    :port<5667>
).run;