gg/fmt.go

14 lines
145 B
Go
Raw Normal View History

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