Skip to content

Instantly share code, notes, and snippets.

@trietptm
Created December 14, 2012 11:34
Show Gist options
  • Save trietptm/4284788 to your computer and use it in GitHub Desktop.
Save trietptm/4284788 to your computer and use it in GitHub Desktop.
Factorial
fact(0, 1).
fact(X, Y) :- X>0, X1 is X-1, fact(X1, Y1), Y is X*Y1.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment