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

8 lines
80 B
Go
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
type fruit int
const (
apple fruit = 0
banana fruit = 1
cherry fruit = 2
)