Does this provide the answer?
From page 62:
'enum Week : char{ Monday=âMâ, Tuesday=âTâ, Wednesday=âWâ,Thursday=âTâ, Friday=âFâ, Saturday=âSâ, Sunday=âSâ};
Now the values for the constants reflect a little more what they represent, although they do not distinguish between Thursday and Tuesday or between Saturday and Sunday. There is no problem with having duplicate values for the constants, but of course, all the names must be unique.'
|