systemweiche.cpp

This commit is contained in:
Marc 2021-06-14 20:05:26 +02:00
parent eb0df7ee84
commit ca5e4c0eca
1 changed files with 19 additions and 0 deletions

19
systemweiche.cpp Normal file
View File

@ -0,0 +1,19 @@
#include <iostream>
using namespace std;
#ifdef __APPLE__
#define CEO "Tim Cook"
#elif __unix__
#define CEO "Linus Torvalds"
#elif __WIN32
#define CEO "Steve Ballmer"
#else
#define CEO "Marc Hannebrook"
#endif
int main()
{
cout << CEO << endl;
return 0;
}