Just out of curiosity, does anyone know of a language that uses a "reverse" if/then statement?
For example,
if(a == b) {
doC();
}
in most languages would be
{
doC();
} if(a == b)
in this language.
I know it won't work in most languages (like C#, for instance) that execute up to down, left to right, but are there any languages that use or support such a syntax?