Skip to content

Instantly share code, notes, and snippets.

@anupam-io
Created May 12, 2021 05:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anupam-io/9cdd20c3ce8949e8c03de583278a79f8 to your computer and use it in GitHub Desktop.
Save anupam-io/9cdd20c3ce8949e8c03de583278a79f8 to your computer and use it in GitHub Desktop.
Automatic compile script
from time import sleep
from os import system
it = 0
while True:
system("clear")
system("cargo run") # Change this to your compile script
it+=1
print(it, "th iteration completed.")
sleep(1)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment