RosettaCodeData/Task/Enumerations/Go/enumerations-4.go

8 lines
80 B
Go
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
type fruit int
const (
apple fruit = 0
banana fruit = 1
cherry fruit = 2
)