Skip to content

Instantly share code, notes, and snippets.

@ympbyc
Created October 9, 2011 03:35
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/1273239 to your computer and use it in GitHub Desktop.
Save ympbyc/1273239 to your computer and use it in GitHub Desktop.
JSLisp example
(define fact (lambda (x)
(if (== x 0)
1
(* x (fact (- x 1))))))
(alert (fact 5))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment