webserver/test_webserver.cc

8 lines
85 B
C++
Raw Normal View History

2020-06-08 13:01:42 +02:00
#include <iostream>
int main()
{
std::cout << "hello, world\n";
return 0;
}