Last active
March 2, 2020 16:31
-
-
Save r-this/7645175814d2702c193be6d7e4929ecb to your computer and use it in GitHub Desktop.
Python3 Header
This file contains 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
#!/usr/bin/env python3 | |
def main(): | |
flag = 1 | |
while(flag): | |
print('This is brute force... Press Ctrl+C to break.') | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment