Files
xgcl/utils/utils_test.go
T
2026-05-27 23:03:00 +08:00

12 lines
141 B
Go

package utils
import (
"testing"
)
func TestEndian(t *testing.T) {
a := []byte{1, 2, 3, 4, 5, 6, 7}
t.Log(a)
t.Log(EndianReverse(a))
}