abigailnacional

C++ Hello World

Apr 5th, 2022 (edited)
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // Abby's First C++ Program
  2.  
  3. #include <iostream>
  4.  
  5. int main() {
  6. std::cout << "Hello, World!";
  7. return 0;
  8. }
Add Comment
Please, Sign In to add comment