Contact: aviboots(AT)netvision.net.il
41,567 questions
54,187 answers
573 users
package main import ( "fmt" "strconv" ) func main() { i := 255 s := strconv.FormatInt(int64(i) , 8) fmt.Printf("Type : %T \nValue : %v\n", s, s) } /* run: Type : string Value : 377 */