concept G22MaskSize { int width = g22defaultMaskSideLength(), height = g22defaultMaskSideLength(); *(int widthHeight) { width = height = widthHeight; } bool square() { ret width == height; } toString { ret spaceCombine("Mask Size", square() ? width + "²" : width + "*" + height); } }