Pascal's triangle: Difference between revisions

m
→‎{{header|REXX}}: deleted a superflous «pre» -- ~~~~
m (→‎{{header|REXX}}: added AKA's (also known as) to pay homage to other mathematicians of yore. -- ~~~~)
m (→‎{{header|REXX}}: deleted a superflous «pre» -- ~~~~)
Line 1,964:
/*─────────────────────────────────────! (factorial) subroutine─────────*/
!:procedure;arg x;!=1;do j=2 to x;!=!*j;end;return ! /*calc. factorial*/</lang>
</pre>
'''output''' when the input was given as: <tt> 11 </tt>
<pre style="height:30ex;overflow:scroll">