aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-06-05 21:39:47 -0400
committerZoffix Znet <cpan@zoffix.com>2016-06-05 21:39:47 -0400
commit140959e4f170d732d990e69b9a0ca129b89e3ac4 (patch)
treec96d92c8eba8af28eea21585c1c0e5c8a18f69d7 /examples
parent16056e8af837a4d982d23728adf24b4cc406576c (diff)
First working test
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl64
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 12245db..3a2127e 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -14,9 +14,11 @@ my $irc = IRC::Client.new(
:debug<1>
# :channels<#zofbot>
# :host<irc.freenode.net>
+ :port<6667>
:servers(
mine => { :port<5667> },
- inspircd => { :port<6667> },
+ inspircd => { },
+ # freenode => { :host<irc.freenode.net> },
)
:plugins(MyPlug.new)
).run;