aboutsummaryrefslogtreecommitdiff
path: root/examples/01-uppercase-bot.p6
blob: c43271084ba063675d56691324f3d2fb0e5d14cc (plain)
1
2
3
4
5
6
7
8
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 } })