Presumably most naïve way for string interpolation in Golang I currently do know

Presumably most naïve way for string interpolation in Golang I currently do know

My previous Golang perk series – might be outdated!

I am learning Go again – this time with special attention to its standard library :

TL;DR : Join([]string{"I", ("<" + Itoa(3)), "Golang"}, " ")

You might be interested in – String interpolation proposal in Golang


In JavaScript we could achieve this by employing Template literals (TL;DR) :

console.log(`I ${("<" + String(3))} JavaScript`)