So if I have something like [(a,b,c,d)] and I wish to remove the ()s (in the whole list there will only be one set of parentheses - immediately after the '[' and before the ']'), how come my rule: curly_for_square( [(C)], [C] ). doesn't work? Seems like it should but I'm sure there's a simple reason!!
Thanks :).
:-curly_for_square([(a,b,c)],C).then I would likeC=[a,b,c]i.e. with the ()s removed but my incorrect clause just givesC=[(a,b,c)]i.e. the same as before :S. Thanks. – vivid-colours Nov 10 '10 at 20:11