Re: ignoring { } ?

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

Is this about creole tags, or are you writing some Eu code, and using &= when you ought to be using append()?

sequence x 
x = {1}  x &= 1             ?x            -- {1,1} 
x = {1}  x &= {1}           ?x            -- {1,1} 
x = {1}  x = append(x,1)    ?x            -- {1,1} 
x = {1}  x = append(x,{1})  ?x            -- {1,{1}} 


&= concatenates two strings/atoms, whereas append always increases the length by 1

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

Search



Quick Links

User menu

Not signed in.

Misc Menu