I am wondering if it is possible to write a jess function or rules to behave findall
in Prolog.
For instance, we have a KB like
(person (name jason) (school nyu))
(person (name john) (school nyu))
(person (name liz) (school cmu))
...
and the input is (school nyu)
, we want to collect all the names of person
like [jason,john]
Any comments would be appreciated!