Advertisement
DarkAtom77

Hello world C++20

May 27th, 2020
358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. // Hello world program
  2. // Language: [upcoming] C++20
  3.  
  4. import <iostream>;
  5.  
  6. int main()
  7. {
  8.     std::cout << "Hello world!" << std::endl;
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement