|
From: Kostas O. <k.o...@at...> - 2014-12-16 22:25:18
|
Eberhard,
Thanks very much. This works, in that Reduce does not consider 'x' to
be an operator outside of my procedure.
And this is what I wanted.
I read in the primer about gensym(), and I think I know what
put('anonymous_id,'psopfn,'gensym);
does, but I don't totally understand how all of this works in
procedure s1s2(...);
begin scalar x;
x := anonymous_id();
operator x;
...
Kostas
On 12/16/2014 15:17, Eberhard Schruefer wrote:
> It uses a not interned id
> for the operator name and therefore would not clash with anything.
|