From 8e3f3e19e3d0afc512a1d3a96c0ec5fc86a33e75 Mon Sep 17 00:00:00 2001 From: Jack Christensen Date: Sat, 18 Oct 2014 10:41:55 -0500 Subject: [PATCH] Update README.md Add docs for continue --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1a2581eb..c9fdde53 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ Once inside a debugging session, the following commands may be used: * `break` - Set break point at the entry point of a function, or at a specific file/line. Example: `break foo.go:13`. +* `continue` - Run until breakpoint or program termination. + * `step` - Single step through program. * `next` - Step over to next source line.