1 개요[ | ]
- Go type
2 구조체[ | ]

Go
Copy
type Something struct{}
3 인터페이스[ | ]

Go
Copy
type Something interface {}
4 type alias[ | ]

Go
Copy
type Something int
type Something string
편집자 Jmnote
로그인하시면 댓글을 쓸 수 있습니다.
type Something struct{}
type Something interface {}
type Something int
type Something string