TutorialsTutorials - The Go Programming LanguageIf you're new to a part of Go, take a look at the tutorials linked below.https://go.dev/doc/tutorial/TourA Tour of Gohttps://go.dev/tour/listBuiltinbuiltin package - builtin - Go PackagesPackage builtin provides documentation for Go's predeclared identifiers.https://pkg.go.dev/builtinSlicesGo Slices: usage and internals - The Go Programming LanguageHow to use Go slices, and how they work.https://go.dev/blog/slices-introProject StructureOrganizing a Go module - The Go Programming LanguageA common question developers new to Go have is “How do I organize my Go project?”, in terms of the layout of files and folders. The goal of this document is to provide some guidelines that will help answer this question. To make the most of this document, make sure you’re familiar with the basics of Go modules by reading the tutorial and managing module source.https://go.dev/doc/modules/layout#multiple-packagesDo check outEffective GoGo Standard Library (specification)