aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
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)