Created SILC Runtime Toolkit git repository Part I.
[runtime.git] / apps / irssi / scripts / hello.pl
diff --git a/apps/irssi/scripts/hello.pl b/apps/irssi/scripts/hello.pl
deleted file mode 100644 (file)
index 82adfe2..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-# "Hello, world!" script :) /hello <nick> sends "Hello, world!" to <nick>
-
-use Irssi;
-use strict;
-
-sub cmd_hello {
-       my ($data, $server, $channel) = @_;
-
-       $server->command("/msg $data Hello, world!");
-}
-
-Irssi::command_bind('hello', 'cmd_hello');