go*: add Turkish translation (#9447)

This commit is contained in:
Tan Siret A
2022-10-31 11:06:43 +01:00
committed by GitHub
parent afac125d3c
commit d0ace9faf9
18 changed files with 348 additions and 0 deletions

24
pages.tr/common/go-doc.md Normal file
View File

@@ -0,0 +1,24 @@
# 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}}`