We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A series of random examples.
###Factorial### (fac { ((n swap) def) # name the top (and only) argument n # (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 #
There was an error while loading. Please reload this page.