Advertisement
Gamer_Z

Untitled

Feb 13th, 2012
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #if defined OS == LINUX
  2. #include "./linux/system.cpp"
  3. #endif
  4. #if defined OS == WIN32
  5. #include "./i386/system.cpp
  6. #endif
  7. #if defined OS == WIN64
  8. #include "./x86_x64/system.cpp"
  9. #endif
  10. #if defined OS == MAC
  11. #include "./mac/system.cpp
  12. #endif
  13.  
  14. System::main(args)
  15. {
  16. System::printf("Hello %d!","World");
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement