decbin

decbin

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