rec1: list(char) -> bool; rec1(nil) <= false; rec1(x::nil) <= x='b'; rec1(x::y::m)<= x='a' and rec1(y::m);
list(char) -> bool;