verb/loop(obj/o as obj in usr.loc)
while(expression)
function(o)
verb/function(obj/o as obj in usr.loc)
Problem description:
Guys I'm in a loop problem. I have a main loop that runs the entire program, but certain verbs called from the loop need an obj argument. But since it is inside a loop the object has to change in each iteration. How can I supply the function with the current obj in usr.loc in each iteration?