Code : Tout sélectionner
sumprod(a,b):={ local s,p; s:=a+b; p:=a*b; return [s,p]; }; debug(sumprod(2,3))
I've tried using the precompiled version and compiling the source myself with the same result. Any suggestions?
Modérateur : xcasadmin
Code : Tout sélectionner
sumprod(a,b):={ local s,p; s:=a+b; p:=a*b; return [s,p]; }; debug(sumprod(2,3))