aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2015-11-25 15:47:36 -0500
committerZoffix Znet <cpan@zoffix.com>2015-11-25 15:47:36 -0500
commit175d70e3703caa05bcde9d1dc50e3ebe842fbedb (patch)
treefbc75dffb2957dd03c267e229fa98c66e011f048 /examples
parent4e394a6fa9d8f838917dbc9196f0ef367d5e9ae9 (diff)
Make stubbing work
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl63
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 42f9d77..00a8406 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -2,9 +2,10 @@ use v6;
use lib 'lib';
use IRC::Client;
use IRC::Client::Plugin::HNY;
-say "42";
+
my $irc = IRC::Client.new(
:host('irc.freenode.net'),
+ :debug,
plugins => [
IRC::Client::Plugin::HNY.new,
]