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

     1  // An example of aliasing the fmt package as f.
     2  package main
     3  
     4  import f "fmt"
     5  
     6  func main() {
     7  
     8  	f.Println("Hello Gopher!")
     9  
    10  }