1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 15:02:07 +02:00
tldr/pages/common/godoc.md
2018-07-12 12:47:25 +05:30

267 B

godoc

Show documentation for go packages.

  • Display help for package "fmt":

godoc {{fmt}}

  • Display help for the function "Printf" of "fmt" package:

godoc {{fmt}} {{Printf}}

  • Serve documentation as a web server on port "6060":

godoc -http=:{{6060}}