hello.cpp 297 B

1234567891011121314
  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. // tag::source[]
  7. #include <iostream>
  8. int main()
  9. {
  10. std::cout << "Hello!\n";
  11. }
  12. // end::source[]