Re: sequences and string, thought I understood!

new topic     » goto parent     » topic index » view thread      » older message » newer message

Jim wrote:

> You mention the three ways to
> concatenate in EU;

As a rule:

1. Use '&' to concatentate 'strings'
2. Use append to add items to the end of sequences

and you will stay fairly safe. Even now, I get into trouble writing:

   s &= a

when I mean:

   s &= {a}

I'd never run into that problem if I had been less clever and just written:

   s = append( s, a )

-- David Cuny

new topic     » goto parent     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu