| Author |
Comment/Response |
TeopeTuK
|
03/02/05 03:58am
(*fu[1] is ok, but f[g] returns incorrect value
*)
In[425]:= fu[x_]:=Block[{s},
s = 10;
If[x<3, s x, 0]
];
fu[1]
fu[g]
__________________________________________________
Out[427]= 10
Out[428]= If[g<3, s g, 0]
Attachment: gluk.JPG, URL: , |
|