Как мне сделать ниже, например
A = atom_a, case A of atom_b or atom_c -> %do something here; atom a -> %do something else! end.
Вы можете использовать охрану:
A = 'atom_a', case A of B when B =:= 'atom_b'; B =:= 'atom_c' -> %do something here; 'atom_a' -> %do something else! end.
Попробуйте следующее:
case is_special_atom(A) of true -> %do something here; false -> %do something else! end. is_special_atom(atom_b) -> true; is_special_atom(atom_c) -> true; is_special_atom(_) -> false.