Updated README

This commit is contained in:
yhirose 2020-02-24 21:50:07 -05:00
parent 4c3b119dde
commit 319417f26d

View file

@ -248,14 +248,13 @@ svr.set_expect_100_continue_handler([](const Request &req, Response &res) {
Client Example
--------------
### GET
```c++
#include <httplib.h>
#include <iostream>
int main(void)
{
// IMPORTANT: 1st parameter must be a hostname or an IP adress string.
httplib::Client cli("localhost", 1234);
auto res = cli.Get("/hi");