Factorions: Difference between revisions

Content added Content deleted
(→‎{{header|Perl 6}}: Minor tweaks , better concurrency)
m (→‎{{header|REXX}}: cut back (one) on the (limit) of calculations of the factorials)
Line 260: Line 260:
if lim=='' | lim=="," then lim= 1500000 - 1 /* " " " " " " */
if lim=='' | lim=="," then lim= 1500000 - 1 /* " " " " " " */


do fact=0 to HIb; !.fact= !(fact) /*use memoization for factorials. */
do fact=0 for HIb; !.fact= !(fact) /*use memoization for factorials. */
end /*fact*/
end /*fact*/