I noticed that if a word is in two concepts, the << >> will match both
for example
#! concept1
u: ( << ~concept1 ~concept1 >> )
u: ( << ~concept1 ~concept2 >> )
concept1 is in both concept1 and concept2
it matches both
Is there a trick to only match the first concept and not the second?
So, in the above, neither would match?
oh, I think this would work
u: ( ~concept1 * ~concept2 )