7 lines
62 B
Go
7 lines
62 B
Go
type fruit int
|
|
|
|
const (
|
|
apple fruit = iota
|
|
banana
|
|
cherry
|
|
)
|