Strings

Soppo adds string interpolation to Go. Instead of fmt.Sprintf, you can embed expressions directly in strings using curly braces.

Any valid expression works inside the braces, including arithmetic, function calls, and field access.

Use double braces to include a literal brace in your string.

Try it: Add another interpolated value to the output.