The user friendly Go online compiler that allows you to Write Golang code and run it online.
Test Code
// Online Go compiler to run Golang program online
// Print "Hello World!" message
package main
import "fmt"
func main() {
Count()
fmt.Println("Hello World!")
}
func Count() {
for i :=0; i < 10; i++ {
fmt.Println(i)
}
}