8 lines
98 B
Python
Executable file
8 lines
98 B
Python
Executable file
#!/usr/bin/env -S python3
|
|
|
|
from time import time
|
|
|
|
def main():
|
|
print("Now is", time())
|
|
|
|
main()
|