The interactive environment is VERY helpful for a programmer. However, it seems Go does not provide it. Is my understanding correct?
|
|
|
As already mentioned, Go Playground (this is the new URL) is very handy. The Go Authors are also thinking about adding a feature-rich editor to it. If you want something local, consider installing hsandbox. Running it simply with There was a I have also seen third party projects for building a REPL for Go, but now I can only find links to two of them: igo and go-repl. How well do they work I don't know. But to actually answer your main question: no, Go does not provide REPL. My two cents: Speed of compilation makes writing a REPL possible for Go, as it has also helped building the tools mentioned here, but the same speed makes REPL less necessary. Every time I want to test something in Go that I can't run in Playground I open a simple UPDATE: Latest weekly release of Go added UPDATE 2: With Go 1 you can directly run go programs with UPDATE 3: |
|||||||
|
|
Have you tried the Go Playground?
|
|||
|
|
|
Go is a compiled language. Like most (though not all) compiled languages, it doesn't provide a repl. |
|||||||||||||
|
|
You also have a recent (March 2013) project called gore from Sriram Srinivasan, which can be useful:
|
||||
|
|
|
No, but you can exploit the speed of compilation (as mentioned in other answers). Have a look at rango that uses a generate-compile-run loop to mimic a REPL. You can also start it with imports and statements to begin an interactive session. |
|||
|
|