Skip to content

Instantly share code, notes, and snippets.

@qwertyowmx
Created January 18, 2023 14:52
Show Gist options
  • Save qwertyowmx/4268c3264f737ce2437e89cf82220205 to your computer and use it in GitHub Desktop.
Save qwertyowmx/4268c3264f737ce2437e89cf82220205 to your computer and use it in GitHub Desktop.
C++ helloworld
#include <iostream>
int main(int argc, char** argv) {
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