RosettaCodeData/Task/Pascal-matrix-generation/Frink/pascal-matrix-generation.frink

4 lines
192 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
println[formatMatrix[new array[[5,5], {|r,c| binomial[c,r]}]]]
println[formatMatrix[new array[[5,5], {|r,c| binomial[r,c]}]]]
println[formatMatrix[new array[[5,5], {|r,c| binomial[r+c, c]}]]]