ref: 6bfa81bb6a4343f3efdf6d086d404c36982a80fd
dir: /test/torture.lsp/
(def ones (map (λ (x) 1) (iota 1000000)))
(write (apply + ones))
(newline)
(def (big n)
(if (<= n 0)
0
`(+ 1 1 1 1 1 1 1 1 1 1 ,(big (- n 1)))))
; https://todo.sr.ht/~ft/femtolisp/2
;(def nst (big 100000))
;(write (eval nst))
;(newline)
(def longg (cons '+ ones))
(write (eval longg))
(newline)
(vm-stats)