Files
tldr/pages.tr/common/go-doc.md
2022-10-31 07:06:43 -03:00

25 lines
541 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# go doc
> Bir paket veya sembolün dokümentasyonunu göster.
> Daha fazla bilgi için: <https://golang.org/cmd/go/#hdr-Show_documentation_for_package_or_symbol>.
- Mevcut paket için dokümentasyonu göster:
`go doc`
- Paket dokümentasyonunu ve dışa aktarılmış sembolleri göster:
`go doc {{encoding/json}}`
- Sembollerin de dokümentasyonunu göster:
`go doc -all {{encoding/json}}`
- Kaynakları da göster:
`go doc -all -src {{encoding/json}}`
- Belirtilen sembolü göster:
`go doc -all -src {{encoding/json.Number}}`