I have a ton of functions that need to run in succession, but not before the other has completed. What I need is a way to queue these functions to run only after the previou
To make sure they run consecutively, you might return a value from each one and use that returned value in the subsequent one...
function do_1_to_5() { r1 = Function1(); r2 = Function2(r1); r3 = Function3(r2); r4 = Function4(r3); r5 = Function5(r4); }