Dear All,
I am using the following directive:
?- use_module(engine(hiord_rt)).
I am expecting that I will then have call/n available as defined in the ISO TC2.
But it seems that the arguments are not appended, but something else happens. I get:
?- call(f(p,q),r,s,t). 1 1 Call: user:f(r,p,q,s,t) ?
But I would expect:
?- call(f(p,q),r,s,t). 1 1 Call: user:f(p,q,r,s,t) ?
Bug or feature?
Bye