I am starting to learn CLIPS at the moment and asked myself when is it better to use symbols and when strings?
On first sight it seems to me, that symbols are favorable because they are easier to compare than strings.
(eq test test)
is faster than
(= (str-compare "test" "test") 0)
Is there a downside to it too?