Added comment.

This commit is contained in:
yhirose 2012-09-27 20:56:17 -04:00
parent ac5c13620c
commit 8b58a3aecc
2 changed files with 9 additions and 9 deletions

View file

@ -9,9 +9,9 @@
int main(void)
{
HTTP_SERVER("localhost", 1234) {
GET("/hi", {
res.set_content("Hello World!");
HTTP_SERVER("localhost", 1234) /* svr_ */ {
GET("/hi", /* req_, res_ */ {
res_.set_content("Hello World!");
});
}
}