Re: RFC 90 (v3) Arrays: Builtins: merge() and demerge()

2000-09-08 Thread Matthew Wickline
(not on list, just tossing this in for discussion) RFC 90 (v3) wrote: -> Both C and do not make -> a copy of the elements of their arguments; -> they simply create an alias to them: -> 1> @a = (1,3,5); 2> @b = (2,4,6); 3> @merged_list = merge(@a,@b); # (1,2,3,4,5,6) 4> $merged_list[1

Re: RFC 269 (v1) Perl should not abort when a required file yields a false value

2000-09-21 Thread Matthew Wickline
(offlist) If I had a qoute file for a raondom sig generator, this would surely be added. :) > Some languages like to have the compiler emit annoying messages to > announce you forgot to include some pointless code whose only purpose > is to stop the compiler from emitting the annoying message.