Search Results
7/14/2025, 5:43:20 PM
>>105903726
>This is a fairly small number. Can the language not handle bigger or do you just find this specific number interesting? Also, what flavor of LISP is this?
It was just arbitrarily selected, (fac 1 100000) is apparently 456574 digits starting with 2824229407960347874293421578024535518477494926091224850578918086542977950901063
>Also, what flavor of LISP is this?
chez scheme where fac is (define (fac a n) (if (= n 0) a (fac (* a n) (- n 1))))
>This is a fairly small number. Can the language not handle bigger or do you just find this specific number interesting? Also, what flavor of LISP is this?
It was just arbitrarily selected, (fac 1 100000) is apparently 456574 digits starting with 2824229407960347874293421578024535518477494926091224850578918086542977950901063
>Also, what flavor of LISP is this?
chez scheme where fac is (define (fac a n) (if (= n 0) a (fac (* a n) (- n 1))))
Page 1