@list1 = qw( artist awful billy blunder)
    @list2 = qw( attitude blatherskite)

    # something magical happens, and the contents of @list1 are now
    # 'artist', 'attitude', 'awful', 'billy', 'blatherskite', 'blunder'

If the lists aren't too large, here's what I'd do:

@list1 = (@list1, @list2);
@list1 = sort (@list1);

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
-- 
Paul Graham is right.
        --Shriram Krishnamurthi

_______________________________________________
ActivePerl mailing list
[email protected]
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to