octdec

octdec

[code]
func Octdec(str string) (int64, error) {
	return strconv.ParseInt(str, 8, 0)
}
[/code]