Guest User

Untitled

a guest
Mar 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. type A struct {
  2. B []struct {
  3. C string
  4. D []struct {
  5. E string
  6. F []struct {
  7. G string
  8. }
  9. }
  10. }
  11. }
  12.  
  13. var a A;
  14. ...
  15. a.B.D = append(a.B.D, ???)
Add Comment
Please, Sign In to add comment