Re: [racket-users] exploring sribble @ ... seems this should work but doesn't ..

2015-04-21 Thread Alexander D. Knauth
What you want is this: | > (displayln "hello") | hello | > (require scribble/reader) | > (use-at-readtable) | > @displayln{hello} | hello On Apr 21, 2015, at 6:13 AM, thomas.lynch wrote: > > Tyring to use '@' to run a command on a string, fails: > > racket@> (displayln "hello") > hello > rac

[racket-users] exploring sribble @ ... seems this should work but doesn't ..

2015-04-21 Thread thomas.lynch
Tyring to use '@' to run a command on a string, fails: racket@> (displayln "hello") hello racket@> (require scribble/base) racket@> @displayln{hello} @displayln: undefined; cannot reference undefined identifier context...: /usr/share/racket/collects/racket/private/misc.rkt:87:7 racket@> hel