ref: b22e8f2befd9e092887034e6bd7ee0a5b02df762
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)))