Pascal's triangle: Difference between revisions

m
→‎{{header|REXX}}: removed OVERFLOW from PRE html tags.
(→‎{{header|Perl 6}}: rearrange, categorize & clean up the solutions)
m (→‎{{header|REXX}}: removed OVERFLOW from PRE html tags.)
Line 2,474:
!: 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>
<pre>
<pre style="overflow:scroll">
1
1 1
Line 2,488:
</pre>
'''output''' when the input was given as: <tt> 22 </tt>
<pre style="height:30ex;overflow:scroll">
1
1 1