summaryrefslogtreecommitdiff
path: root/examples/hello.pl
diff options
context:
space:
mode:
authorTimo Sirainen <cras@irssi.org>2000-03-15 20:49:44 +0000
committercras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564>2000-03-15 20:49:44 +0000
commit2799d200cb28fee39a8b621e60fa71ac943f504f (patch)
tree864f7a2a227ff2b7275fb57cac5cef7e4f0e045b /examples/hello.pl
parentbefd35e710bec8af72865b1e670e8a15f9342a45 (diff)
downloadirssi-2799d200cb28fee39a8b621e60fa71ac943f504f.zip
Directory should really be named "scripts", not "examples".
Added script mlock.pl git-svn-id: http://svn.irssi.org/repos/irssi/trunk@149 dbcabf3a-b0e7-0310-adc4-f8d773084564
Diffstat (limited to 'examples/hello.pl')
-rw-r--r--examples/hello.pl12
1 files changed, 0 insertions, 12 deletions
diff --git a/examples/hello.pl b/examples/hello.pl
deleted file mode 100644
index de53c3ab..00000000
--- a/examples/hello.pl
+++ /dev/null
@@ -1,12 +0,0 @@
-# "Hello, world!" script :) /hello <nick> sends "Hello, world!" to <nick>
-
-use Irssi;
-
-sub cmd_hello {
- my ($data, $server, $channel) = @_;
-
- $server->command("/msg $data Hello, world!");
- return 1;
-}
-
-Irssi::command_bind('hello', '', 'cmd_hello');