Advertisement
DarkAtom77

Hello world C++85

May 27th, 2020
389
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. // Hello world program
  2. // Language: C++85 ("The C++ Programming Language, First Edition", by Bjarne Stroustrup, 1985)
  3.  
  4. #include <iostream>
  5.  
  6. int main()
  7. {
  8.     cout << "Hello world!" << endl;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement