PHP » GoLang |
login |
register |
about
|
dechexdechex[code]
func Dechex(number int64) string {
return strconv.FormatInt(number, 16)
}
[/code]
|