Skip to content

Instantly share code, notes, and snippets.

@Integralist
Created October 16, 2025 11:20
Show Gist options
  • Select an option

  • Save Integralist/ec8cd46441b505dc272279d29414980f to your computer and use it in GitHub Desktop.

Select an option

Save Integralist/ec8cd46441b505dc272279d29414980f to your computer and use it in GitHub Desktop.
Go: fmt indexing
package main
import "fmt"
func main() {
fmt.Printf("%[1]s %[1]s %[2]s %[2]s %[3]s", "one", "two", "three") // yields "one one two two three"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment