>Hi all:
>
> How would I get the following results (the ruby way):
>
> a = [1,2]
> b = [3,4]
>
> If I do
> a << b  => a = [1,2,[3,4]]
> (not what I want.)
>
> I want
> a = [1,2,3,4]
>

> How about:
>
> a + b

I'm sorry that's not correct, it should be

a += b

or

a = a + b


Paul.