The easiest way to concatenate strings is to use the concatenation operator (+), which allows you to add strings as you would numerical values.
1234567891011121314151617181920212223242526272829package mainimport "fmt" func main() { // Creating and initializing strings // using var keyword var str1 string str1 = "Hello "
1234567891011121314151617181920212223242526272829
package main
import "fmt"
func main() {
// Creating and initializing strings
// using var keyword
var str1 string
str1 = "Hello "