Select Page

Online Compiler and Code Executor for Go





Go Online Compiler

You can run and write your Go code using The Research Scientist Pod’s free Go online compiler.

Hello World Go Example

Here is a simple Hello World example to get you started using Go.

package main
import "fmt"
func main() {
    fmt.Println("hello world")
}