From 71a2db0e522a9964b0ce4c37e4eb7bb6cc8e1d4a Mon Sep 17 00:00:00 2001 From: Junwei Zhao Date: Tue, 17 Apr 2018 11:49:38 +1000 Subject: [PATCH] Add REPL in go --- categories/go.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/categories/go.md b/categories/go.md index 7899ce9..da6b856 100644 --- a/categories/go.md +++ b/categories/go.md @@ -191,4 +191,12 @@ fmt.Println(t.Format("2006-01-02 15:04:05")) - go test foo... - run all tests import path prefixed with foo: - go test ... - - run all tests in your $GOPATH: \ No newline at end of file + - run all tests in your $GOPATH: + +## REPL + +REPL stands for read eval print loop, basically it just like the irb in Ruby. + +Wiki: + +* gore \ No newline at end of file