Files
go-iden3-crypto/utils/showarchbits_test.go
2020-04-14 16:53:15 +02:00

12 lines
154 B
Go

package utils
import (
"fmt"
"math/bits"
"testing"
)
func TestShowArchBits(t *testing.T) {
fmt.Printf("Architecture is %v bits\n", bits.UintSize)
}