Contact: aviboots(AT)netvision.net.il
40,904 questions
53,356 answers
573 users
package main import ( "fmt" "strconv" ) func main() { num := 8901 str := strconv.FormatInt(int64(num), 10) fmt.Println(str) } /* run: 8901 */