1
0
html/print_test.go

13 lines
183 B
Go
Raw Normal View History

package html_test
import (
"fmt"
"code.squareroundforest.org/arpio/notation"
)
func printBytes(a ...any) {
for _, ai := range a {
notation.Println([]byte(fmt.Sprint(ai)))
}
}