February 11, 2006
In http://digitalmars.com/d/arrays.html , Static Initialization of Static Arrays, in the:
  enum Color { red, blue, green };
  int value[Color.max + 1] = [ blue:6, green:2, red:5 ];
the second line should be:
  int value[Color.max + 1] = [Color.blue:6, Color.green:2, Color.red:5];

-- 
Bruno Medeiros - CS/E student
"Certain aspects of D are a pathway to many abilities some consider to be... unnatural."
February 14, 2006
Right you are. I'll get it fixed.