decoct

decoct

[code]
func Decoct(number int64) string {
	return strconv.FormatInt(number, 8)
}
[/code]