Concept Flow - Function call and execution flow
Start Program
Call function foo()
Enter foo()
Execute foo() body
Return from foo()
Continue main program
End Program
This flow shows how the program starts, calls a function, runs the function's code, returns back, and then continues.