Hi all, I just started to study the book "Adventures in Rule‑Based Programming". On page 54:
CLIPS> (matches get_command)
Matches for Pattern 1
None
Activations
*
(0 0 1)
And here's the first part of get_command
```
(defrule get_command
(declare (salience -10))
(not (command))
=>
...
It seems, "Pattern 1" refers to `(command)` instead of `(not (command))`. I wonder if there's command like ppfact to check the detail of a pattern in a rule? I don't find any in the reference manual.
Thanks.