I need a way of doing the following in Prolog.
I want to have a list of variables defined. For example [x,z,k,s,r,v,w]
And then I want one of my functions to be able to pop the first element from the list, use it in some way, then when It needs another element I want it to pop the next element from that list. And perhaps when the function is finished I want it to reset the list to it's original state.
I can't think of a way of doing this by simple passing the list as an argument. This would be really simple with OO programming. As I could just have a global variable.