Skip to content

Instantly share code, notes, and snippets.

@gidden
Created September 20, 2013 18:11
Show Gist options
  • Save gidden/6641482 to your computer and use it in GitHub Desktop.
Save gidden/6641482 to your computer and use it in GitHub Desktop.
Hello World
/// @brief a first-time gist for a first-time gister.
/// prints Hello World! to std out.
#include <iostream>
int main() {
std::cout << "Hello World!" << std::endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment