Subversion Repositories programming

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
107 ira 1
aa([]).
2
aa([H|T]) :- atom(H), aa(T).
3