Wednesday, November 21, 2007

Inaugural Snippet

About every week or so, I run across interesting programming snippets while looking for solutions to problems at work. These are usually in C++, but other amusing languages might show up as well. Some of them are pretty cool, so I figured it would be more fun to blog them than to just sit on them. For a starting post, though, it seems most appropriate to do something like this:


#include <iostream>

int main()
{
std::cout << "Hello, Snippets World!" << std::endl;
return 0;
}

No comments: