Any good Go REPL implementation / tool?

Go lang is fast to compile and can be used as a script by go run prog.go. However, a REPL is more convenient for testing/trying some small pieces of code. Any good Go REPL implementation / tool?

Try gore https://github.com/motemen/gore

Get gore

$ go get -u github.com/motemen/gore

An example

$ gore
gore version 0.2.6  :help for help
gore> :import fmt
gore> fmt.Println("hello world!")
hello world!
13
nil

gore>

Eric Ma

Eric is a systems guy. Eric is interested in building high-performance and scalable distributed systems and related technologies. The views or opinions expressed here are solely Eric's own and do not necessarily represent those of any third parties.

2 comments:

Leave a Reply

Your email address will not be published. Required fields are marked *