On Feb 9, 2008, at 6:12 PM, Ryan Mulligan wrote:
rmulliga@rtmlap ~/gambc-v4_2_1> bin/gsi-script Gambit v4.2.1
(define (loopy x) (println x)(loopy (+ 1 x))) (define (loopy x) (print x ) (print " ")(loopy (+ 1 x))) (loopy 1)
I'd be curious if display causes a segfault. I had a similar issue and was told it was related to a bug in keyword argument handling, and that avoiding keyword procedures was the way to go.