post.cpp 332 B

1234567891011121314
  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. #include <iostream>
  7. #include <cstdlib>
  8. int main(int argc, char *argv[])
  9. {
  10. std::cout << argv[1] << "\n";
  11. return EXIT_SUCCESS;
  12. }