Re: [racket-users] Need a scribble identity wrapper. A no-op.

2019-11-03 Thread Alexis King
Use the search box in the documentation: https://docs.racket-lang.org/search/index.html?q=elem > On Nov 3, 2019, at 18:34, Hendrik Boom wrote: > > On Sun, Nov 03, 2019 at 02:46:42PM -0800, William J. Bowman wrote: >> I think ‘elem’ will

Re: [racket-users] Need a scribble identity wrapper. A no-op.

2019-11-03 Thread Hendrik Boom
On Sun, Nov 03, 2019 at 02:46:42PM -0800, William J. Bowman wrote: > I think ‘elem’ will do what you want. Indeed. Thank you. That works. But I haven't been able to find where 'elem' is documented. -- hendrik > > -- > Sent from my phoneamajig > > > On Nov 3, 2019, at 14:07, Hendrik Boom

Re: [racket-users] Need a scribble identity wrapper. A no-op.

2019-11-03 Thread William J. Bowman
I think ‘elem’ will do what you want. -- Sent from my phoneamajig > On Nov 3, 2019, at 14:07, Hendrik Boom wrote: > > I've tried defining a function that reads a file, and then tries to > pass it back to be part of a scribble document. > > Unfortunately, the list returned needs to be

[racket-users] Need a scribble identity wrapper. A no-op.

2019-11-03 Thread Hendrik Boom
I've tried defining a function that reads a file, and then tries to pass it back to be part of a scribble document. Unfortunately, the list returned needs to be processed somehow before I can return it. Just returning the raw text results in complaints. Apparently a list of items needs to

Re: [racket-users] scribble cannot find module that racket finds

2019-11-03 Thread Shu-Hung You
On Sun, Nov 3, 2019 at 2:26 PM Hendrik Boom wrote: > > scribble does not find module "inclusion.rkt" even though racket does. > There must be a work-around, mustn't there? > > I can (require "inclusion.rkt") jusr fine from racket > > t3.rkt: > > #lang racket > (require "inclusion.rkt") > foo > >

[racket-users] scribble cannot find module that racket finds

2019-11-03 Thread Hendrik Boom
scribble does not find module "inclusion.rkt" even though racket does. There must be a work-around, mustn't there? I can (require "inclusion.rkt") jusr fine from racket t3.rkt: #lang racket (require "inclusion.rkt") foo inclusion.rkt: #lang racket (define foo 'foo) (provide foo) running it:

[racket-users] Re: Mandelbrot set compute pipeline functional in racket-vulkan

2019-11-03 Thread Simon Schlee
Thank you, for creating this! Currently I am still using opengl for my projects, until I have time to learn vulkan and port to it. I created a pull request which saves the image via a bitmap% to get rid of the external `convert` program. -- You received this message because you are subscribed