William M. Connolley
Just for once, a vaguely work-related post, but without any work.
What is wrong with this (its in C, of course):
switch (stoat)
{
bool goat = TRUE;
case weasel:
goat = FALSE
/* Fallthrough */
case ferret:
mustelid(goat);
break;
...
}
where you…