github.com/inaneverb/ekacore/ekaunsafe/v4@v4.0.0/runtime_test.go (about) 1 // Copyright © 2020-2023. All rights reserved. 2 // Author: Ilya Stroy. 3 // Contacts: iyuryevich@pm.me, https://github.com/qioalice 4 // License: https://opensource.org/licenses/MIT 5 6 package ekaunsafe_test 7 8 import ( 9 "fmt" 10 "testing" 11 12 "github.com/inaneverb/ekacore/ekaunsafe/v4" 13 ) 14 15 func TestGoRuntimeAddressEncoder(t *testing.T) { 16 var s = ekaunsafe.GoRuntimeAddressEncoder().String() 17 fmt.Printf("GO RUNTIME BYTE ORDER: %s\n", s) 18 }