From 9a2ff4f376da3564f197df8b5704e1dda3799468 Mon Sep 17 00:00:00 2001 From: Yang Gao <yangg@google.com> Date: Tue, 24 Feb 2015 16:13:02 -0800 Subject: [PATCH] Add build and run section --- cpp/cpptutorial.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/cpp/cpptutorial.md b/cpp/cpptutorial.md index 144b902519..613af1ae7c 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 +``` -- GitLab