Enumerations:
You can use enumeration literals by providing an enumeration tag word then using dotted keywords
typedef enum tag_alphabet
{
a=1,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z
} alphabet
print tag_alphabet.d 'result: 4
I will try to improve this situation by making it work with alpahabet
Charles