>>107904220
>>107904235
Here's some additional weirdness for you
(define (f x)
(lambda (y) x))
(define g (f 1))
(define h (f 1))
(define (i x)
(lambda (y) y))
(define j (i 1))
(define k (i 1))
(eq? j k) => #t, but only in a repl, so it's possible one of the passes under `guild compile -Ohelp' is clobbering an earlier optimization
$ guild compile -O0 test.scm -o test.go
Comment too long. Click here to view the full text.