Concept Flow - Global scope
Start Program
Define global variable
Define function
Call function
Inside function: Access global variable
Function ends
Program ends
The program starts by defining a global variable, then a function that uses it. When the function is called, it accesses the global variable from the global scope.