aboutsummaryrefslogtreecommitdiff
path: root/examples/01-uppercase-bot.p6
blob: d84653846580313efc376faa573a582ba3763968 (plain)
1
2
3
4
5
6
7
8
use lib <lib>;
use IRC::Client;
.run with IRC::Client.new:
    :nick<MahBot>
    :host<irc.freenode.net>
    :channels<#zofbot>
    :debug
    :plugins(class { method irc-to-me ($_) { .text.uc } })