Guest User

Untitled

a guest
May 21st, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. void sayHi()
  5. {
  6. cout << "Hi" << endl;
  7. }
  8.  
  9. int main()
  10. {
  11. sayHi();
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment