Function
Printfln
(template string, values ...interface{})
Source from the content-addressed store, hash-verified
| 3 | import "fmt" |
| 4 | |
| 5 | func Printfln(template string, values ...interface{}) { |
| 6 | fmt.Printf(template + "\n", values...) |
| 7 | } |
Tested by
no test coverage detected