Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- #include <conio.h>
- int main () {
- char answer = ' ';
- system("python3 tools/source/superr.py");
- while (answer != 'q' && answer != 'Q') {
- printf("\n\n\033[0m\033[32m\"Q\" to Quit, or \"R\" to Restart, then press ENTER\033[0m\n");
- answer = _getch();
- if (answer == 'r' || answer == 'R')
- system("python3 tools/source/superr.py");
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment