4 lines
88 B
Text
4 lines
88 B
Text
(defun comb-n-m (n m)
|
|
(comb (range* 0 n) m))
|
|
|
|
(put-line `3 comb 5 = @(comb-n-m 5 3)`)
|