Games/Messages version 0.03
===========================

Random messages for common situations in games

  use Games::Messages;

  print player_wins($player);
  print player_loses($player);

  print computer_beats_computer();
  print computer_beats_player($player);
  print player_beats_computer($player);
  print player_beats_player($winner, $loser);

  print player_is_idle($player);
  print player_exagerates($player);

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

SEE ALSO

The POD documentation in Messages.pm

COPYRIGHT AND LICENCE

Copyright (C) 2004 Jose Alves de Castro

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself. 

