Code: Select all
EnumerationBinary 0
#a
#b
#c
EndEnumeration
Debug #a
Debug #b
Debug #cbut I would expect as output0
0
0
Observation 20
1
2
Code: Select all
EnumerationBinary 5
#a
#b
#c
EndEnumeration
Debug #a
Debug #b
Debug #cIs this actually intended? Does it make sense?5
10
20
Or should the compiler generate an error message such as "The start constant of EnumerationBinary must be a multiple of 2."?

