13 lines
145 B
Go
13 lines
145 B
Go
package gg
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Println(v ...any) {
|
|
fmt.Println(v...)
|
|
}
|
|
|
|
func Printf(format string, v ...any) {
|
|
fmt.Printf(format, v...)
|
|
}
|