Blame | Last modification | View Log | RSS feed
aa([]). aa([H|T]) :- atom(H), aa(T).
aa([]).
aa([H|T]) :- atom(H), aa(T).