Hi,
 
I'm using l2s (from zexy) in order to concatenate together lists of variable lengths with pack, in other words:
 
 
 
 
[this is(             [the text(        [I want to pack(
 
 |                       |                  |
[l2s]                  [l2s]             [l2s]
  |                      |                  |
 
[pack s s s                                     ]
 
 
(hope the above makes sense).
 
This is working fine, and I'm doing that because I need the middle bit to change dynamically, e.g. change
 [the text( 
 
to
 
 [another bit of text(
 
 
 
Here's the twist though. I end up with a list of three items when what I really need is a list of all the words, each a symbol. Is there a way to do that?
 
Thanks,
 
- martin