diff --git a/cpp/cpptutorial.md b/cpp/cpptutorial.md index 144b902519f89581177dfebf7e5c45519601f2fe..613af1ae7cd697073c98b8e47482d90673cda0d9 100644 --- a/cpp/cpptutorial.md +++ b/cpp/cpptutorial.md @@ -350,7 +350,16 @@ The syntax for reading and writing here is exactly the same as for our client-st ## Try it out! -_[need build and run instructions here]_ - - +Build client and server: +```shell +$ make +``` +Run the server, which will listen on port 50051: +```shell +$ ./route_guide_server +``` +Run the client (in a different terminal): +```shell +$ ./route_guide_client +```