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