This site's content was compiled from 1993 to 2006. Beyond that, Google is your friend.
Greg Compestine
The original motivation for this library was to implement the examples from the book ยป Learning Perl in Eiffel, by using Eiffel infix and prefix operators, and agents.
Here's an implemention the Unix 'cat' command that works with file redirection or an arbitrary list of file names on the command line:
class E_CAT inherit PERLISH creation make feature make is do from until #<> p = Void loop print(#$_ p + "%N"); end; end -- make end -- class E_CAT