Skip to content
Snippets Groups Projects
main.py 146 B
Newer Older
John Ireland Schiwitz's avatar
John Ireland Schiwitz committed
import time


def main():
    while True:
        print("Ubuntu runs containers!")
        time.sleep(5)


if __name__ == "__main__":
    main()