7 lines
80 B
Go
7 lines
80 B
Go
type fruit int
|
|
|
|
const (
|
|
apple fruit = 0
|
|
banana fruit = 1
|
|
cherry fruit = 2
|
|
)
|