Files
2022-01-05 15:18:26 -05:00

8 lines
129 B
Go

package main
import "fmt"
func Printfln(template string, values ...interface{}) {
fmt.Printf(template + "\n", values...)
}