mirror of
https://github.com/arnaucube/go-iden3-crypto.git
synced 2026-02-07 11:36:41 +01:00
12 lines
154 B
Go
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)
|
|
}
|