aboutsummaryrefslogtreecommitdiff
path: root/examples/01-uppercase-bot.p6
diff options
context:
space:
mode:
Diffstat (limited to 'examples/01-uppercase-bot.p6')
-rw-r--r--examples/01-uppercase-bot.p68
1 files changed, 0 insertions, 8 deletions
diff --git a/examples/01-uppercase-bot.p6 b/examples/01-uppercase-bot.p6
deleted file mode 100644
index c432710..0000000
--- a/examples/01-uppercase-bot.p6
+++ /dev/null
@@ -1,8 +0,0 @@
-use lib <lib>;
-use IRC::Client;
-.run with IRC::Client.new:
- :nick<MahBot>
- :host(%*ENV<IRC_CLIENT_HOST> // 'irc.freenode.net')
- :channels<#zofbot>
- :debug
- :plugins(class { method irc-to-me ($_) { .text.uc } })