Skip to content

Instantly share code, notes, and snippets.

@qnighy
Created April 20, 2009 14:12
Show Gist options
  • Save qnighy/98549 to your computer and use it in GitHub Desktop.
Save qnighy/98549 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(int argc, char *argv[], char *envp[])
{
puts("Hello, world!");
return 0;
}
#include <iostream>
using namespace std;
int main(int argc, char *argv[], char *envp[])
{
cout << "Hello, world!" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment