#include "base.h"
#include "third\math.h"
HttpMain()
{
/*Http
<html>
<head>
<title>C++ Language Server Page</title>
</head>
*/
double a,b;
a=-1.3;
b=fabs(a);
FCString Message;
Message=404;
echo "Hello World!<br>";
Response->Content+=Message+"<br>";
echo b;
echo "<br>";
a=1;
b=exp(a);
echo b;
/*Http
</body>
</html>
*/