-
-
Save zoffixznet/0eab66da3da94957c802 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use lib <lib ../lib>; | |
use IRC::Client; | |
use IRC::Client::Plugin::HNY; | |
sub MAIN ( | |
:$host = 'localhost' | |
:$channel = '#zofbot' | |
Num :$time | |
) { | |
$time and $*CUSTOM-NOW-TIME = $time; | |
IRC::Client.new( | |
:$host, | |
:channels($channel), | |
:debug, | |
plugins => [ IRC::Client::Plugin::HNY.new ] | |
).run; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment