home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lifeos2.zip / LIFE-1.02 / TESTS / LF / MANUAL3.LF < prev    next >
Text File  |  1996-06-04  |  144b  |  6 lines

  1. print_list([]).
  2. print_list([H|T])
  3.    :- write(H),      % print the first element
  4.       nl,            % start a new line
  5.       print_list(T). %
  6.