C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
Golang Built In Functions
Review built-in functions like append and make. Use keywords in programs.
Built-ins. Go programs use packages to add functionality. But core functions are built into the language. With built-ins we perform common tasks.
Packages. We use the "import" keyword to add a package to a Go program. Once we import package "Y" we can invoke methods on it like Y.Do().bufiobytescompress/gzipcontainer/listencoding/base64encoding/csvencoding/jsonflagfmthtml/templateio/ioutilindex/suffixarraymathmath/bitsnet/httposos/execpathpath/filepathregexpsortstrconvrandstringstimeunicode
Go specification. For detailed descriptions of Go keywords, I recommend reading the official Go specification. This document is not exciting, but it is excellent in every other way.Go Specification: golang.org
Some notes. Operators are another key part of the Go language. These include the plus + and other arithmetic ones. These operators too are built in.
In Go we find a newer, well-designed set of features. The Go compiler itself is an impressive technical feat. A Go developer will do great things in the world.
© TheDeveloperBlog.com