Created
November 16, 2016 16:18
-
-
Save AndyNovo/1f44f0e470314ea77fff16ad5062897f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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