7 lines
No EOL
127 B
Python
7 lines
No EOL
127 B
Python
def setVersion(version):
|
|
global VERSION
|
|
VERSION = version
|
|
print(f"version: {VERSION}")
|
|
|
|
def getVersion():
|
|
return VERSION |