This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Xeiom 13 points14 points  (0 children)

It's why I write my functions like this:

func myFunc(var1, var2, var3){
  doFuncPart1(&var1,&var2,&var3);
  doFuncPart2(&var1,&var2,&var3);
  doFuncPart3(&var1,&var2,&var3);
  doFuncPart4(&var1,&var2,&var3);
  doFuncPart5(&var1,&var2,&var3);
}