mirror of
https://github.com/tursom/GoCollections.git
synced 2025-02-12 10:40:15 +08:00
13 lines
166 B
Go
13 lines
166 B
Go
package lang
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestString_HashCode(t *testing.T) {
|
|
for i := 1000; i < 1100; i++ {
|
|
fmt.Println(Int(i).ToString().HashCode())
|
|
}
|
|
}
|