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