hello.cpp 263 B

123456789101112
  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 <iostream>
  7. int main()
  8. {
  9. std::cout << "Hello!\n";
  10. }