Skip to content

Instantly share code, notes, and snippets.

@oknauta
Last active May 12, 2024 23:21
Show Gist options
  • Save oknauta/976d4f1aead40fb2fc034212a6f8f3d8 to your computer and use it in GitHub Desktop.
Save oknauta/976d4f1aead40fb2fc034212a6f8f3d8 to your computer and use it in GitHub Desktop.
"Hello, world!" in C++
// hello_world.cpp
#include <iostream>
int main(int argc, char const *argv[])
{
std::cout << "Hello, world!\n";
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment