learning_go/headFirst/struct/help/help.go
Alexander Pivkin f7fe833d3e bul'
2025-09-02 17:37:51 +03:00

12 lines
105 B
Go

package help
type Info struct {
Name string
Age int
Inner
}
type Inner struct {
Test string
}