Thread::Iterator, version 0.1

                     Copyright (c) 1998, Malcolm Beattie

   This program is free software; you can redistribute it and/or modify
   it under the terms of either:

       a) the GNU General Public License as published by the Free
       Software Foundation; either version 1, or (at your option) any
       later version, or

       b) the "Artistic License" which comes with this kit.

   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
   the GNU General Public License or the Artistic License for more details.

   You should have received a copy of the Artistic License with this kit,
   in the file named "Artistic".  If not, you can get one from the Perl
   distribution. You should also have received a copy of the GNU General
   Public License, in the file named "Copying". If not, you can get one
   from the Perl distribution or else write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.

This module is a proof-of-concept implementation of
iterators/coroutines in Perl using threads.

CHANGES

0.1  13 Aug 1998
Initial release.

INSTALLATION

You need Perl 5.005 or later with thread support configured
(Configure -Dusethreads). This module consists of a single Perl module
(no XS code) but still uses Makefile.PL so that it installs
automatically into the right library directory and manifies the pod
documentation from the module.

To build:
   perl Makefile.PL
   make
   make install

Malcolm Beattie
[email protected]
13 August 1998