예제 #1
0
파일: example_test.go 프로젝트: locusf/gmp
func ExampleInt_SetString() {
	i := new(big.Int)
	i.SetString("644", 8) // octal
	fmt.Println(i)
	// Output: 420
}