xxxxxxxxxx
const ref string shortest(const return ref string a, const return ref string b) {
return a.length < b.length ? a : b;
}
void main() {