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