Re: [Factor-talk] Literate Programming

2012-08-29 Thread Jon Harper
Short answer: no. The factor documentation system is described here: http://docs.factorcode.org/content/article-writing-help.html Interestingly, the documentation system is written in factor and documented using itself, so this html page is a good example of the output it produces. Jon On Wed,

Re: [Factor-talk] Literate Programming

2012-08-29 Thread P.
And just to add that thanks to the ability to manipulate the lexer in Factor, you can write a literate programming syntax library and it could be however you want it, including exactly like Haskell's. - rien On Wed, Aug 29, 2012 at 2:03 PM, Jon Harper jon.harpe...@gmail.com wrote: Short

Re: [Factor-talk] Literate Programming

2012-08-29 Thread John Benediktsson
I just pushed a vocab with some ideas that might help you get started: USE: literate LITERATE This is a section that is mostly text... you can even include factor stuff that doesn't get parsed like the following: : does-this-work? ( -- x ) no it doesn't! ; But, then if you want to run some

Re: [Factor-talk] Literate Programming

2012-08-29 Thread Alexander J. Vondrak
this particular point. :P Carry on, --Alex Vondrak From: Jon Harper [jon.harpe...@gmail.com] Sent: Wednesday, August 29, 2012 11:03 AM To: factor-talk@lists.sourceforge.net Subject: Re: [Factor-talk] Literate Programming Short answer: no. The factor

Re: [Factor-talk] Literate Programming

2012-08-29 Thread Joe Groff
On Wed, Aug 29, 2012 at 12:22 PM, John Benediktsson mrj...@gmail.com wrote: I just pushed a vocab with some ideas that might help you get started: USE: literate LITERATE This is a section that is mostly text... you can even include factor stuff that doesn't get parsed like the following:

Re: [Factor-talk] Literate Programming

2012-08-29 Thread John Benediktsson
From: Jon Harper [jon.harpe...@gmail.com] Sent: Wednesday, August 29, 2012 11:03 AM To: factor-talk@lists.sourceforge.net Subject: Re: [Factor-talk] Literate Programming Short answer: no. The factor documentation system is described here: http

Re: [Factor-talk] Literate Programming

2012-08-29 Thread graham telfer
I just pushed a vocab with some ideas that might help you get started: USE: literate LITERATE This is a section that is mostly text... you can even include factor stuff that doesn't get parsed like the following: : does-this-work? ( -- x ) no it doesn't! ; But, then if you want to run some