On Thu, 2002-04-04 at 12:06, Nikola Janceski wrote:
> I disagree... the changes from Perl 4 to Perl 5.500?? were so much that I
> did have to re-write almost all my works, (the small ones were spared). The
> reason why I had to re-write it was that there were some subtle syntax
> changes, but mainly the functionality added was better the crap that I wrote
> to emulate it. 8^)
This is the sort of thing I am talking about. In the past we would
write things like
print 'this is a constant string:' . this_is_a_sub_call() .
". Here is the\\n\n";
Now we will write
print "this is a constant string: $(this_is_a_sub_call()).",
" Here is the\\n\n";
or even (when using the &sub_call method)
print "this is a constant string: &this_is_a_sub_call.",
" Here is the\\n\n";
We don't need the '.' operator as much anymore because we have more ways
of embedding stuff directly into the strings.
--
Today is Prickle-Prickle the 21st day of Discord in the YOLD 3168
Or is it?
Missile Address: 33:48:3.521N 84:23:34.786W
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]