in reply to Re: Converting Python to Perl and back again
in thread Converting Python to Perl and back again
Good points. With regard to number 4, is there an alternative in Perl for something such as
a = [1, 2, 3] b = [1, 2, 4] if (a < b): print "a is less than b"
Or would I end up recursing through the array, comparing each element individually?
I should note that I've never found this useful, so I won't hold it against Perl if it doesn't have this feature :).
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Converting Python to Perl and back again
by Corion (Patriarch) on Apr 04, 2003 at 08:26 UTC | |
|
Re: Re: Re: Converting Python to Perl and back again
by theorbtwo (Prior) on Apr 04, 2003 at 18:32 UTC |