Rect.js 90 B

12345678
  1. class Rect
  2. {
  3. constructor(w, h=w)
  4. {
  5. this.w = w;
  6. this.h = h;
  7. }
  8. }