Created
May 12, 2021 05:51
-
-
Save anupam-io/9cdd20c3ce8949e8c03de583278a79f8 to your computer and use it in GitHub Desktop.
Automatic compile script
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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