I have a simple function
function increase(percent, number)
low = number - number*percent;
end
I want to return low so I can use it as an argument for another function
mitoGen(asp, arg, increase(0.2, 234), glu)
Is there a way to do this?