File: main.cpp

package info (click to toggle)
libqxt 0.6.1-6
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 19,004 kB
  • sloc: cpp: 57,512; xml: 296; sh: 251; makefile: 56; php: 14
file content (8 lines) | stat: -rw-r--r-- 208 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#include <iostream>
using namespace std;

int main(int argc, char** argv) {
    cout << "Content-type: text/html\r\n";
    cout << "\r\n";
    cout << "<html><body>I've got lots of content!</body></html>";
}