Someone post this in /g/, and post SchemeWorld too, I'm b& :(
``
>>849909
(define (inf-loop) (inf-loop))
Actually, in /prog/ a couple days ago, we were writing a spammer that floods the command line with "DESU DESU DESU" and the problem about leading spaces etc. came up. Scheme had the most elegant solution.
(define (start) (display "DESU")(desu))
(define (desu) (display " DESU")(desu))
(desu)
You can't pretend that's not the prettiest solution to a non-existent problem you've ever seen."