RosettaCodeData/Task/Combinations/TXR/combinations.txr

5 lines
88 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
(defun comb-n-m (n m)
(comb (range* 0 n) m))
(put-line `3 comb 5 = @(comb-n-m 5 3)`)