package gg import ( "fmt" ) func Println(v ...any) { fmt.Println(v...) } func Printf(format string, v ...any) { fmt.Printf(format, v...) }