Skip to content

Instantly share code, notes, and snippets.

@ympbyc
Last active December 10, 2015 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ympbyc/4357859 to your computer and use it in GitHub Desktop.
Save ympbyc/4357859 to your computer and use it in GitHub Desktop.
;;Actor model in Nadeko
(:= (- k a b) (k (** - a b)))
(:= (* k a b) (k (** * a b)))
(:= (actorial c n)
(= n 0
(c 1)
(- (actorial (* c n)) n 1)))
(actorial show 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment