Created
December 23, 2023 13:34
-
-
Save hron84/9f38b6893f5119bd590ff8c10441bd89 to your computer and use it in GitHub Desktop.
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
#include <iostream> | |
#if defined _WIN32 || defined __CYGWIN__ | |
#include <windows.h> | |
#define sleep Sleep | |
#else | |
#include <unistd.h> | |
#endif | |
using namespace std; | |
int main(int argc, char **argv) { | |
while(1) { | |
cout << "Ez zselés?" << std::endl; | |
sleep(1); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment