This may sound strange, but it is used in a parser, I want to be able to parse something of the form
foo[bar]
So this would be represented in a list as:
[foo, [, bar, [] Maybe such a word would be written in DCG as:
x --> id [[] arg []]
The problem is that the square bracket is a reserved character, so how can I represent this in prolog?