I have the following module, as an example, in IML:
start multiply (x,y);
product = x*y;
return product;
finish multiply;
Which I call with:
RUN multiply(2,100); /* outputs 200 */
What I want to know is very simple, how can I assign this as a new variable? In PHP I could do:
function multiply($x,$y){
$product = $x*$y;
return $product;
}
Then do:
$newvar = multiply(2,100);
I need this functionality in SAS. Is it possible?