[racket-users] Re: Custom define macro

2017-01-20 Thread Lehi Toskin
That's perfect, Thank you! On Friday, January 20, 2017 at 2:46:49 PM UTC-8, Matthew Butterick wrote: > Perhaps a job for `normalize-definition`? It handles all the syntactic > disentangling in a `define`-like macro. -- You received this message because you are subscribed to the Google Groups

[racket-users] Re: Custom define macro

2017-01-20 Thread Matthew Butterick
On Friday, January 20, 2017 at 1:49:12 PM UTC-8, Lehi Toskin wrote: > I have created a macro[1] that operates like regular define, but wraps the > definition around a struct with prop:procedure. This struct contains the > procedure to be used and a list representation of its definition. I've