Skip to content

Instantly share code, notes, and snippets.

@axurright
Created October 17, 2024 15:10
Show Gist options
  • Select an option

  • Save axurright/038d277a62110758cd03025b469b89df to your computer and use it in GitHub Desktop.

Select an option

Save axurright/038d277a62110758cd03025b469b89df to your computer and use it in GitHub Desktop.
A Hello World in C++ to mark the start of my learning
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment