What is the output of the following code?
X = 'Test' def func(): print(X) func()
Test
The function references a global variable in the enclosing module.