Re: ignoring { } ?
- Posted by petelomax Mar 20, 2010
- 1035 views
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