Advertisement
Guest User

Untitled

a guest
Feb 15th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.22 KB | None | 0 0
  1.  
  2. // compile with:
  3. // cl /Wall /wd4514 /wd4820 /wd4986 /wd4530 /wd4100 test.cpp
  4.  
  5. #include <iostream>
  6.  
  7. int main( int argc, char *argv[] )
  8. {
  9.     int unusedstuff;
  10.     std::cout << "hello" << std::endl;
  11.     return 0;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement