No.11091599 ViewReplyOriginalReport
How do you implement an algorithm that calls the same function/method inbetween every other function/method?

There has to be a better way than
fun1();
fun();
fun2();
fun;
fun3();
fun();
.
.
.