1
0
html/print_test.go
Arpad Ryszka 1308c164a7 render:
- wrap
- inline chilren tag
- refactor render
2025-10-05 14:27:48 +02:00

13 lines
183 B
Go

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