Guest User

Untitled

a guest
Oct 16th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3.  
  4. void herro_world(const char *message)
  5. {
  6. std::cout << message << "\n";
  7. }
  8.  
  9. int main(int argc, char *argv[])
  10. {
  11. herro_world("Herro world!");
  12. system("PAUSE");
  13. return 0;
  14. }
Add Comment
Please, Sign In to add comment