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