Prolog code

C code posted by Nicolas
created at 31 Dec 03:26

Edit | Back
1
2
3
4
displayText([]):- !.
displayText([Head|Rest]):-
  writeln(Head),
  displayText(Rest).
86 Bytes in 1 ms with coderay