![]() |
|
go ahead... be a heretic | |
PerlMonks |
Re: Perl style question: loops with postconditionby bronto (Priest) |
on Jun 28, 2002 at 12:32 UTC ( [id://177997]=note: print w/replies, xml ) | Need Help?? |
First of all, I don't like the third at all :-). The first is fine, but it goes a little against my sense of KISS: it is perfectly clear to me what it would do, but... will it be for others that may read my code? The second... well, I like a different approach, since I tend to use obviuous while test conditions only if I can't do without (for example, using the shell: while true ; do ...; done). My approach is similar to the second one, but slightly different in syntax:
This way I achieve my goal without using trivial cycle conditions and, hopefully, being more readable to others. Just my 2 cents (of Euro) --bronto
In Section
Seekers of Perl Wisdom
|
|