Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-13 Thread Hugh Aguilar
Message: 4 Date: Mon, 12 Oct 2009 01:07:47 +0200 From: Samuel Tardieu s...@rfc1149.net Subject: Re: [Factor-talk] Factor Versus Forth --- the book To: factor-talk@lists.sourceforge.net Message-ID: 87iqelcyws@willow.rfc1149.net Content-Type: text/plain; charset=us-ascii Hugh A more

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-11 Thread Hugh Aguilar
Message: 6 Date: Sat, 10 Oct 2009 18:48:53 -0500 From: Doug Coleman doug.cole...@gmail.com Subject: Re: [Factor-talk] Factor Versus Forth --- the book To: factor-talk@lists.sourceforge.net Message-ID: 3a2525b0-76e7-4815-8641-f537d742e...@gmail.com Content-Type: text/plain; charset=us-ascii

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-11 Thread Samuel Tardieu
Hugh == Hugh Aguilar hugoagui...@rosycrew.com writes: Hugh Forth only ships a relative handful of words that have Hugh been found to be widely useful. One of these is star-slash the Hugh scalar. It is called that because it is typically used for scaling Hugh integer arithmetic. You use continued

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-11 Thread Adam
Somewhere in extra is an 8080 emulator written by Chris Double that can even play simple game ROMs like Space Invaders. If it has fallen out of maintenance it will be in the unmaintained folder in the main source tree. On 10/11/09, Samuel Tardieu s...@rfc1149.net wrote: Hugh == Hugh Aguilar

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-11 Thread Chris Double
On Mon, Oct 12, 2009 at 3:19 PM, Adam hiat...@gmail.com wrote: Somewhere in extra is an 8080 emulator written by Chris Double that can even play simple game ROMs like Space Invaders. I even had it running an 8080 Forth, inside Factor. If it has fallen out of maintenance it will be in the

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-10 Thread Doug Coleman
Hi Hugh, In your book, you state that you know about the */ word in Forth, allowing you to quickly solve the resistor problem. Why not go the whole hog and ship a new word in every Forth implementation: : *+/ ( x y -- z ) 2dup + */ ; This directly solves the problem -- any competent Forth

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-10 Thread William Tanksley, Jr
Doug Coleman doug.cole...@gmail.com wrote: In your book, you state that you know about the */ word in Forth, allowing you to quickly solve the resistor problem.  Why not go the whole hog and ship a new word in every Forth implementation: : *+/ ( x y -- z ) 2dup + */ ; Doug, I see your purpose

Re: [Factor-talk] Factor Versus Forth --- the book

2009-10-10 Thread Chris Double
On Sun, Oct 11, 2009 at 11:44 AM, Hugh Aguilar hugoagui...@rosycrew.com wrote: I have an updated version. Please read it through all the way, rather than just go to the new sections, as there is a lot of rewriting throughout. Thanks for your continued help in improving this documentation. Have