mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
8 lines
106 B
Python
8 lines
106 B
Python
wat = 1
|
|
|
|
class Wat:
|
|
wat = 2
|
|
print("in class", wat) # prints 2
|
|
|
|
print("in module", wat) # prints 1
|