hello.cpp 311 B

1234567891011121314151617
  1. // Copyright (c) 2003 Vladimir Prus
  2. //
  3. // Distributed under the Boost Software License, Version 1.0. (See
  4. // accompanying file LICENSE.txt or copy at
  5. // https://www.bfgroup.xyz/b2/LICENSE.txt)
  6. #include <a.h>
  7. int main()
  8. {
  9. #ifdef RELEASE
  10. release();
  11. #else
  12. debug();
  13. #endif
  14. return 0;
  15. }