Skip to content

Instantly share code, notes, and snippets.

@technoscavenger
Created January 25, 2020 15:11
Show Gist options
  • Save technoscavenger/d63d0f7ffcf2001db9b3fd2ec626aa5b to your computer and use it in GitHub Desktop.
Save technoscavenger/d63d0f7ffcf2001db9b3fd2ec626aa5b to your computer and use it in GitHub Desktop.
Hello world in C++
#include <iostream>
using namespace std;
int main()
{
cout << "hello, world!\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment