aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2015-12-05 14:52:45 -0500
committerZoffix Znet <cpan@zoffix.com>2015-12-05 14:52:45 -0500
commitccbd5ff10ce1fa1a2025a540635bc1c939484098 (patch)
treece8afe928d0241332f5c4470ca21a370a9061ad9 /examples
parentf4e9d98cee046fcd70bc3bcca4b2555f38254b28 (diff)
Barely-working grammar
Diffstat (limited to 'examples')
-rw-r--r--examples/bot.pl64
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/bot.pl6 b/examples/bot.pl6
index 00a8406..3bd14cc 100644
--- a/examples/bot.pl6
+++ b/examples/bot.pl6
@@ -1,12 +1,12 @@
use v6;
use lib 'lib';
use IRC::Client;
-use IRC::Client::Plugin::HNY;
+# use IRC::Client::Plugin::HNY;
my $irc = IRC::Client.new(
:host('irc.freenode.net'),
:debug,
plugins => [
- IRC::Client::Plugin::HNY.new,
+ # IRC::Client::Plugin::HNY.new,
]
).run;