Chris, your quoting mechanism is extremely unclear. It's difficult to discern what you wrote and what the people you're quoting wrote.
On Fri, Jul 08, 2011 at 20:05:14 -0400 , Chris Charley wrote: > Hello JJ, > > It is sometimes helpful to put print statements in a routine to > follow the flow of action. However, if you don't have Perl installed > that would be a problem :-) If you've not got perl installed, installing it is pretty trivial, even on Windows. There are portable Strawberry releases available at http://strawberryperl.com/releases.html (portable meaning one doesn't need to be an admin to install perl), and those on anything sane with a compiler toolchain can use perlbrew (http://cpan.me/App::perlbrew) to get a recent perl installed in their home directory. If you've not got a compiler toolchain installed, you're extremely limited in the CPAN modules you can choose, and may as well not use Perl at that point. > Here it is with some print (say) statements: To be clear, say is a builtin for perls version 5.10.1 (5.10.0 had several bugs and is not recommended for production or development use) and above. It's roughly equivalent to print with a \n added to the end. If you don't have 5.10.1 or above installed, read the docs for say here: http://p3rl.org/say . -- Chris Nehren | Coder, Sysadmin, Masochist Shadowcat Systems Ltd. | http://shadowcat.co.uk/ -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/