So, just some syntactical sugar.
It would be really nice if there was an opposite of declaring local variables for functions.
i.e. instead of:
example= function({a,b}, {c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w},
c = a+b;
d = c+a;
//...
x = v+w;
y = x+b;
);
print(x,y);
I could write:
example= function({a,b}, {Default Local, x, y},
c = a+b;
d = c+a;
//...
x = v+w;
y = x+b;
);
print(x,y);