<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Go on my docs</title><link>https://docs.tannerr.dev/languages/go/</link><description>Recent content in Go on my docs</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><atom:link href="https://docs.tannerr.dev/languages/go/index.xml" rel="self" type="application/rss+xml"/><item><title/><link>https://docs.tannerr.dev/languages/go/go-reading-order/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://docs.tannerr.dev/languages/go/go-reading-order/</guid><description>This document gives tips for writing clear, idiomatic Go code. It augments the language specification, the Tour of Go, and How to Write Go Code, all of which you should read first.
Then Effective GO
Language Specification Tour of Go How to Write Go Code Effective Go</description></item><item><title/><link>https://docs.tannerr.dev/languages/go/go_strings/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://docs.tannerr.dev/languages/go/go_strings/</guid><description>To concatenate strings in Go (Golang), you can use several methods. Here are the most common ones:
1. Using the + Operator # The simplest way to concatenate two or more strings is by using the + operator.
package main import &amp;#34;fmt&amp;#34; func main() { str1 := &amp;#34;Hello, &amp;#34; str2 := &amp;#34;World!&amp;#34; result := str1 + str2 fmt.Println(result) // Output: Hello, World! } 2. Using fmt.Sprintf # You can also use fmt.</description></item><item><title>go</title><link>https://docs.tannerr.dev/languages/go/go/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://docs.tannerr.dev/languages/go/go/</guid><description>go # Types # bool: a boolean value, either true or false string: a sequence of characters int: a signed integer float64: a floating-point number byte: exactly what it sounds like: 8 bits of data Go&amp;#39;s basic types are bool string int int8 int16 int32 int64 uint uint8 uint16 uint32 uint64 uintptr byte // alias for uint8 rune // alias for int32 // represents a Unicode code point float32 float64 complex64 complex128 zero values 0 false &amp;quot;&amp;quot;</description></item></channel></rss>