On Sun, Nov 15, 2009 at 07:18:33PM +0100, Andy Wingo wrote:
> On Sun 15 Nov 2009 17:33, Josef Wolf writes:
> > I am trying to work through the little schemer book. In order to make it
> > easier to go through the examples, I've come up with the following macro:
> > [ ... ]
>
> Does the little sc
On Sun, Nov 15, 2009 at 08:26:58PM +, Neil Jerram wrote:
> Josef Wolf writes:
> > I am trying to work through the little schemer book. In order to make it
> > easier to go through the examples, I've come up with the following macro:
> > [ ... ]
>
> The body of a define-macro definition is sup
Hello,
On Sun 15 Nov 2009 17:33, Josef Wolf writes:
> Hello,
>
> I am trying to work through the little schemer book. In order to make it
> easier to go through the examples, I've come up with the following macro:
>
> ;;; Helper to visualize
>
> (define-macro (disp exp)
> (display exp)
Josef Wolf writes:
> Hello,
>
> I am trying to work through the little schemer book. In order to make it
> easier to go through the examples, I've come up with the following macro:
>
> ;;; Helper to visualize
>
> (define-macro (disp exp)
> (display exp) (newline)
> `(display ,exp)
>
Hello,
I am trying to work through the little schemer book. In order to make it
easier to go through the examples, I've come up with the following macro:
;;; Helper to visualize
(define-macro (disp exp)
(display exp) (newline)
`(display ,exp)
; (newline) (newline)
)
This wor