Advertisement
GreMendes

Untitled

Sep 11th, 2014
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #include <iostream>
  2. #define WIN true
  3.  
  4. #if WIN
  5. int main(){
  6.  
  7.     std::cout << "Windows";
  8.  
  9.     return 0;
  10. }
  11.  
  12. #else
  13. int main(){
  14.  
  15.     std::cout << "Linux";
  16.  
  17.     return 0;
  18. }
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement