When i do an assert like:
assert(-color(red)).
it gives me the error:
ERROR: assert/1: No permission to modify static procedure `(-)/1'
so i change -color to dynamic:
dynamic -color/4.
and now it gives me the error:
ERROR: dynamic/1: Type error: `atom' expected, found `-color'
Any ideas?