Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created November 16, 2016 16:18
Show Gist options
  • Save AndyNovo/1f44f0e470314ea77fff16ad5062897f to your computer and use it in GitHub Desktop.
Save AndyNovo/1f44f0e470314ea77fff16ad5062897f to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main(){
cout << "Content-type: text/html" << endl;
cout << endl;
cout << "<!doctype html><html><body>"<<endl;
cout << "Hi there. I rule!" << endl;
cout << "</body></html>" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment