RosettaCodeData/Task/Evaluate-binomial-coefficients/Quackery/evaluate-binomial-coefficients.quackery
2025-02-27 18:35:13 -05:00

7 lines
143 B
Text

[ tuck - over
1 swap times
[ over i + 1+ * ]
nip swap times
[ i 1+ / ] ] is binomial ( n n --> n )
5 3 binomial echo