Update README.md

Add docs for continue
This commit is contained in:
Jack Christensen 2014-10-18 10:41:55 -05:00 committed by Derek Parker
parent 83764affa6
commit 8e3f3e19e3

@ -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.