success.cpp 305 B

123456789101112131415
  1. // Copyright (c) 2014 Rene Rivera
  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. //
  7. #include <iostream>
  8. #include <cstdlib>
  9. int main()
  10. {
  11. std::cout << "Hi!\n";
  12. return EXIT_SUCCESS;
  13. }