Add REPL in go

This commit is contained in:
2018-04-17 11:49:38 +10:00
parent 4059f9da35
commit 71a2db0e52
+9 -1
View File
@@ -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:
- run all tests in your $GOPATH:
## REPL
REPL stands for read eval print loop, basically it just like the irb in Ruby.
Wiki: <https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop>
* gore <https://github.com/motemen/gore>