Concept Flow - Global keyword
Start
Define global variable
Define function
Inside function: use 'global' keyword
Modify global variable
Function ends
Global variable changed outside function
End
This flow shows how a global variable is defined, then modified inside a function using the 'global' keyword, affecting the variable outside the function.