fork download
  1. countdown(X) :- number(X), X < 0.
  2. countdown(X) :- number(X), X >= 0.
  3. write(X), nl, NX is X - 1, countdown(NX).
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.pl:3: fatal error: redefining control construct (',')/2
compilation failed
stdout
Standard output is empty