Pascal's triangle: Difference between revisions

→‎{{header|Perl 6}}: works also with rakudo
m (→‎{{header|REXX}}: indented DO loops more, changed comments, aligned statements, added whitespace, added a comment. -- ~~~~)
(→‎{{header|Perl 6}}: works also with rakudo)
Line 1,582:
 
{{works with|niecza|2011.07}}
{{works with|rakudo|2012.04.01}}
<lang perl6>constant Pascal = [1], -> @p { [0, @p Z+ @p, 0] } ... *;
 
1,934

edits