(define-syntax compile-time (λ (stx) (datum->syntax stx (for/sum ((n 100000000)) n)))) (define run-time (λ () (for/sum ((n 100000000)) n))) (time (displayln (compile-time))) (time (displayln (run-time)))
Standard input is empty
4999999950000000 cpu time: 0 real time: 0 gc time: 0 4999999950000000 cpu time: 3164 real time: 3164 gc time: 0
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!