Is there any way to reduce the if statement by using something similar to the following code?
concept: ~food [~meat ~veggies]
s: (My favorite food is _*) if ( _0 == ~meat ) { Meat-eater huh? }
Currently the equal statement only works if _0 = actual text ~meat. Otherwise, I have to create separate if clauses for each item of meat.