Re: A macro containing a mini-macro?

2018-09-28 Thread Mark H Weaver
I wrote: > It turns out that pure 'syntax-rules' macros are turing complete, but > they are limited in the ways that they can inspect the syntax objects > given to them as operands. In particular, they cannot inspect atomic > expressions, except to compare them with the finite set of literals in >

Re: A macro containing a mini-macro?

2018-09-28 Thread Mark H Weaver
Hi, HiPhish writes: > Hello Schemers, > > I have written a small macro for writing test specifications: > > (define-syntax test-cases > (syntax-rules () > ((_ title >(given (byte byte* ...)) >...) > (begin >(test-begin title) >