From: Simon Schuster Date: 2007-09-25T02:28:27+09:00 Subject: literal quote in an array? using colons for now, but would like to somehow encapsulate a sentence in this way (basically), with quotes. speaker = ["joe ", "betty "] expression = ["said: ", "replied: ", "stated: "] content = ["hello.", "bye."] 053:0> sentence = speaker[0] + expression[1] + content[0] "joe replied: hello." but I'd like to get: "joe replied, "hello."" thanks!