return


return of a function

return

return

        Returns NIL.

return(expr)

        Returns the evaluation of expr.

Example:

toto(n1,n2)
{
return(n1+2*n2);
}
toto(1,2); produces the 5 value.