Hey guys, wanted to know how to concatenate two lists. I looked around and only saw examples using scalaras with the .= operation.
I would like to concatenate for example:
I would like to concatenate for example:
Code:
@list_1 = ('my','dog');
@list_2 = ('is','lazy');
@final_list = "insert code here"
print @final_list;
Output: "my dog is lazy"