7 lines
111 B
Python
Executable file
7 lines
111 B
Python
Executable file
#!/usr/bin/env python3
|
|
VERSION = """\
|
|
Mozilla Firefox 70.0\
|
|
"""
|
|
|
|
if __name__ == "__main__":
|
|
print(VERSION)
|