Special factorials: Difference between revisions

m
→‎{{header|REXX}}: eliminated the need for abutment.
m (→‎{{header|REXX}}: simplified some code.)
m (→‎{{header|REXX}}: eliminated the need for abutment.)
Line 194:
say @ 5 " is:"; $= ' 'commas( efn( ef(5) ) ); call tell
@= 'the inverse factorial of'
do j=1 for 10; say @ || right(!(j), 98) " is: " rf(!(j))
end /*j*/
say @ || right(119, 98) " is: " rf(119)
 
say @ || right(119, 9) " is: " rf(119)
exit 0 /*stick a fork in it, we're all done. */
/*──────────────────────────────────────────────────────────────────────────────────────*/