1
0
html/print_test.go

13 lines
183 B
Go
Raw Permalink Normal View History

package html_test
import (
"code.squareroundforest.org/arpio/notation"
2025-10-05 21:25:53 +02:00
"fmt"
)
func printBytes(a ...any) {
for _, ai := range a {
notation.Println([]byte(fmt.Sprint(ai)))
}
}