regar/demo/simple.py
2024-10-15 17:06:51 +02:00

8 lines
98 B
Python
Executable file

#!/usr/bin/env -S python3
from time import time
def main():
print("Now is", time())
main()