Initial commit

This commit is contained in:
markp88
2022-01-05 15:18:26 -05:00
commit 9ae003506c
794 changed files with 22908 additions and 0 deletions

View File

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