guile-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: wikid 0.6


From: Thien-Thi Nguyen
Subject: Re: wikid 0.6
Date: Mon, 17 Sep 2001 14:34:38 -0400

   From: Miroslav Silovic <address@hidden>
   Date: 17 Sep 2001 16:38:44 +0200

   (define (flatten-write v)
     (if (not (null? v))
         (if (pair? v)
             (begin
               (flatten-write (car v))
               (flatten-write (cdr v)))
             (display v))))

   I find this style much more LISPish in general. :)

thanks for the tip!  i'll incorporate this approach after instrumenting
the code to be able to measure before/after performance.

thi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]