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


_________________________________________________
 For list-related administrative tasks:
 http://list.cs.brown.edu/mailman/listinfo/plt-dev

Reply via email to