persistable asclass AbstractMatrix implements Matrix {
int w, h;
*(int *w, int *h) {}
public int getWidth() { ret w; }
public int getHeight() { ret h; }
toString {
ret flexLines(
roundBracket(w+"x"+h),
str(countIteratorToList getLine(getHeight()));
}
}