{{as of|20222025}}, Go does not have string interpolation. There have been some proposals for string interpolation, inwhich thehave nextbeen version of the language, Go 2rejected.<ref>{{cite web|url=https://github.com/golang/go/issues/34174 |title=proposal: Go 2: string interpolation #34174|website=[[GitHub]] }}</ref><ref>{{cite web|url=https://github.com/golang/go/issues/50554 |title=proposal: Go 2: string interpolation evaluating to string and list of expressions #50554|website=[[GitHub]] }}</ref> Instead, Go uses [[printf format string]]s in the <code>fmt.Sprintf</code> function, string [[concatenation]], or template libraries like <code>text/template</code>.