Files
otclient/srcs/main.cpp
Eduardo Bart ca2e22ec41 hello world!
2010-11-08 20:04:33 -02:00

8 lines
124 B
C++

#include <iostream>
int main(int argc, const char *argv[])
{
std::cout << "Hello World!" << std::endl;
return 0;
}