Hello Consider this code: int list[]; list.length += 1; dmd issues the error "(list).length is not an lvalue". Why doesn't "+=" work for the length property? "list.length = list.length + 1" works. Regards, Luís