(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
(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.