| From: Felix Klock's PLT scheme proxy (pltscheme at pnkfx.org) Date: Fri Sep 11 16:40:04 EDT 2009 |
|
PLT Folks-
Definitions window:
-------------------
#lang scheme
(define-syntax b (syntax-rules () ((_) 'first-post!)))
(define-syntax a (syntax-rules ()
((_) (begin (define-syntax b (syntax-rules () ((_)
1)))
(b)))))
(a)
Interactions window:
--------------------
Welcome to DrScheme, version 4.1.5 [3m].
Language: Module custom; memory limit: 1024 megabytes.
1
> (a)
first-post!
>
This seems wrong.
-Felix
| Posted on the dev mailing list. |
|