kdmult: > this(int x, int y) > { > this.x = x; > this.y = y; > } In D I prefer: this(int x_, int y_) { this.x = x_; this.y = y_; } Bye, bearophile