countdown(0) :- write(0). countdown(N) :- write(N), N1 is N-1, countdown(N1).
countdown(10).
109876543210
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!