Skip to content

Instantly share code, notes, and snippets.

@campoy
Created December 6, 2013 01:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save campoy/7817255 to your computer and use it in GitHub Desktop.
Save campoy/7817255 to your computer and use it in GitHub Desktop.
Goimports example
package main
import (
"fmt"
"math"
"code.google.com/p/go.tools/present"
)
var doc present.Doc
func main() {
fmt.Println(math.Pi)
}
package main
var doc present.Doc
func main() {
fmt.Println(math.Pi)
}
@campoy
Copy link
Author

campoy commented Dec 6, 2013

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment