I have downloaded windows installer for GO language and installed it. But there seems to have no option to run it interactively like Python etc. How can I run Go interactively? Are there any IDE for the Go Language? Someone please explain me how can I do that.
Asked
Active
Viewed 116 times
-2
-
use LiteIDE: https://github.com/visualfc/liteide Btw, not an interpreted language and has no interactive shell. – Sep 25 '15 at 09:52
-
1Intellij IDEA go plugin https://github.com/go-lang-plugin-org/go-lang-idea-plugin is rather good! – RoninDev Sep 25 '15 at 10:36
-
See also http://stackoverflow.com/a/28664334/6309 – VonC Sep 25 '15 at 10:51
-
[IDEs and Plugins for Go](https://github.com/golang/go/wiki/IDEsAndTextEditorPlugins) – icza Sep 25 '15 at 11:07
1 Answers
-1
There are some Go REPL implementations out there. A quick google search returned:
https://github.com/motemen/gore
https://github.com/vito/go-repl
I haven't used them, but I assume they work similarly to Python's REPL.

Hosack
- 1,597
- 1
- 8
- 10