|
|
On Tue, 22 Jan 2002 17:08:18 +0100, "Thorsten Froehlich" <tho### [at] trfde>
wrote:
> #declare foo=function{x}
> #declare foo2=function{foo(x,0,1)}
> #undef foo
> #declare foo=function{x}
...
> (internally functions are tracked via unique numbers).
Thank You for explanation. And little additional question: is below script
supposed in this design to be also treated as recursion ?
#macro F()
function(k,l){
#local E=function(c){c};
select(E(k+l)
#undef E
,0,1)
}
#end
#declare E=F();
ABX
Post a reply to this message
|
|