I would like to return a list of Bools where each responds to a certain check, here is a javascript example:
if(x == 2)
a = false;
if(x == 3)
b = false;
if(y == 2)
c = false;
if(y == 3)
d = false;
return [a, b, c, d];
Dirty example, I know. Just wondering what a good approach might be.