The problem i have that i have several functions that needs to be invoked in defined order the order can't be breakable. now the code need to be continued and develop after i finish to code. im looking for some method to set the functions in some kind of unbreakable structure. for example i have:
function_1() { //do some stuff ..} ;  // must be first  
function_2() { //do some stuff based on function_1()..};  // must be second 
function_3() { //do some stuff based on function_1() and function_2()..};;  // must be third 
they all under the main() app function .
 
     
     
     
     
    