Append Character to String

Examples in Go
package main

import "fmt"

func main() {
	fmt.Println("string" + string('c'))
}