Contact: aviboots(AT)netvision.net.il
38,040 questions
49,640 answers
573 users
package main import "fmt" type A struct { n int s string B struct { c int d int } } func main() { var st A st.n = 23 st.s = "go" st.B.c = 876 st.B.d = 93 fmt.Println(st) fmt.Println(st.n) fmt.Println(st.B.c) } /* run: {23 go {876 93}} 23 876 */