Content deleted Content added
add headings to the 'Other Implementations' section, and add a perl example using Coro::Generator, also more links to 'Articles with example ... code' |
fix botched <source> tag |
||
Line 242:
Perl does not natively provide generators, but support is provided by the [http://search.cpan.org/dist/Coro-Generator Coro::Generator] module which uses the [http://search.cpan.org/dist/Coro Coro] co-routine framework. Example usage:
<source lang="perl">
use strict;
use warnings;
Line 264:
</source>
=== Lisp ===
[[Common Lisp]] also does not natively provide generators, yet various library implementations exist, such as [http://cliki.net/pygen pygen].
|