Skip to content

Instantly share code, notes, and snippets.

@chand1012
Created February 8, 2021 17:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chand1012/de3bef7f5ef296766870b13a8b9d03c8 to your computer and use it in GitHub Desktop.
Save chand1012/de3bef7f5ef296766870b13a8b9d03c8 to your computer and use it in GitHub Desktop.
Hello World in C++
#include <iostream>
// name: test.cpp
// desc: Hello World in C++
// public: true
int main() {
std::cout << "Hello world!" << std::endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment