Reputation: 341
In addition to learning Racket I'm trying to learn literate programming. Unfortunately the Racket documentation is sparse to say the least with regards to scribble/lp. Could someone point me to some better resources on this subject or examples of literate programs written in Racket?
Thank you kindly.
Upvotes: 6
Views: 1165
Reputation: 5053
Here's a small puzzle game in Racket, using the scribble/lp
library: https://github.com/racket/games/blob/master/chat-noir/chat-noir-literate.rkt
Upvotes: 4
Reputation: 3669
Here is another shorter and self - explanatory example:
Project Page using woven output.
It was written to cover some of the gaps in the Racket documentation.
Upvotes: 3