github.com/EngineerKamesh/gofullstack@v0.0.0-20180609171605-d41341d7d4ee/volume1/section1/hellogopher/hellogopher.go (about)

     1  // A basic Hello Gopher program.
     2  package main
     3  
     4  import "fmt"
     5  
     6  func main() {
     7  
     8  	fmt.Println("Hello Gopher!")
     9  
    10  }