CSstudent
CSstudent

Reputation: 43

Prolog- Put the result of a query in a list

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

Answers (1)

joel76
joel76

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

Related Questions