@rule box(@width, @height: @width) { // or +box(@width, @height: @width) or another prefix symbol
width: @width;
height: @height;
}
// usage
.block { box: 10px } // width: 10px; height: 10px;
.search { box: 100px 10px } // width: 100px; height: 10px;