1// testserver.cpp : Defines the entry point for the console application.
2//
3
4#include "stdafx.h"
5
6int main(int argc, char* argv[])
7{
8	printf("Hello World!\n");
9	return 0;
10}
11
12