enum {
A = 1.2f, // A is 1.2f of type float
B, // B is 2.2f of type float
int C = 3, // C is 3 of type int
D // D is 4 of type int
}show in http://dlang.org/enum.htmlI guess my mind hasn't expanded beyond the C limitations in this regard ;)
