aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-06-10 06:39:52 -0400
committerZoffix Znet <cpan@zoffix.com>2016-06-10 06:39:52 -0400
commit505933841a1384c234be7b05739c4713b0ee4022 (patch)
tree685a711f9eb18c5e6756729b715a6641c1ebce93 /examples
parent7a17edf5807b585698a219aaf551f1393139c001 (diff)
Intermediary
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl65
1 files changed, 3 insertions, 2 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 3a2127e..7d76630 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -12,12 +12,13 @@ class MyPlug does IRC::Client::Plugin {
my $irc = IRC::Client.new(
:nick('IRCBot' ~ now.Int)
:debug<1>
- # :channels<#zofbot>
+ :channels<#perl6 #perl7>
# :host<irc.freenode.net>
:port<6667>
:servers(
mine => { :port<5667> },
- inspircd => { },
+
+ # inspircd => { },
# freenode => { :host<irc.freenode.net> },
)
:plugins(MyPlug.new)