Pascal's triangle: Difference between revisions

Content added Content deleted
m (→‎{{header|REXX}}: increased the maximum line triangle in header section comment. -- ~~~~)
m (→‎{{header|REXX}}: removed ''height'' from ''style''. -- ~~~~)
Line 1,992: Line 1,992:
!:procedure;arg x;!=1;do j=2 to x;!=!*j;end;return ! /*calc. factorial*/</lang>
!:procedure;arg x;!=1;do j=2 to x;!=!*j;end;return ! /*calc. factorial*/</lang>
'''output''' when the input was given as: <tt> 11 </tt>
'''output''' when the input was given as: <tt> 11 </tt>
<pre style="height:30ex;overflow:scroll">
<pre style="overflow:scroll">
1
1
1 1
1 1