I am just learning Go and would like to know if there is a way to merge operations like fmt.Printf("%t ", f1) and fmt.Printf("%t ", f2) together.
fmt.Printf("%t ", f1)
fmt.Printf("%t ", f2)
Are you looking for this?
fmt.Printf("%t %t ", f1, f2)