Reputation: 43
I have these facts enroll(hazem,maths). enroll(hazem,science). and so on and I want to have student(X,ListOfCourses). that returns the courses X is taking in a list.
Upvotes: 1
Views: 201
Reputation: 5605
take a look at findall/3 bagof/3, setof/3, for example :
student(X, ListOfCourses) :-
findall(Courses, enroll(X, Courses), ListOfCourses).
Upvotes: 1