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: