Subversion Repositories programming

Rev

Blame | Last modification | View Log | RSS feed

fac(0,1).
fac(N,Out) :- M is N-1, fac(M,Y), Out is N*Y.