ref: 1ce1997d95f84d23e1dd9de7e391230d84e32883 dir: /test/pisum.lsp/
(define (pisum) (dotimes (j 500) ((label sumloop (λ (i sum) (if (> i 10000) sum (sumloop (+ i 1) (+ sum (/ (* i i))))))) 1.0 0.0)))