#!/usr/local/bin/perl5.8.8 

eval 'exec /usr/local/bin/perl5.8.8  -S $0 ${1+"$@"}'
    if 0; # not running under some shell
use warnings;
use strict;
use lib qw( ../lib ./lib );
use IRC::Bot::Hangman;



IRC::Bot::Hangman->new(
  channels => [ '#hangman' ],
  nick     => 'hangman',
  server   => 'irc.london.pm.org',
  games    => 3,
  can_talk => 1,
  word_list_name => 'too_easy',
  ignore_list => [qw(dipsy pasty namer)],
)->run;

print "Exiting\n";


syntax highlighted by Code2HTML, v. 0.9.1