You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
###Factorial###
(fac {
((n swap) def) # name the top (and only) argument n in local namespace #
(n ((n 1 sub) fac) mul) # n! = n*(n-1)! = (n ((n 1 -) !) *) #
} def) # bind the code literal #
((4 fac) out) # execute new function and output value #