well here is something interesting:
How many calculations, math, movements, assignments, can I do in the glbal area?
EX:
Header/using blah
int vap = 7;
int pav =2;
int sasd = 0;
(sasd=(vap*pav));
Would the last line work? Or do I have to declare a vareable to do any math/calculations?
Does it execute in a top down fashion? Or would I have to declare a function to execute that last line?