Good resources to learn the Factor programming language ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T05:31:40Z http://stackoverflow.com/feeds/question/131032 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/131032/good-resources-to-learn-the-factor-programming-language 6 Good resources to learn the Factor programming language ? SolarBear 2008-09-25T01:40:05Z 2009-04-23T09:09:33Z <p>I understand that Factor is based on Forth, so I guess resources on Forth would be nice too.</p> <p>Thanks !</p> http://stackoverflow.com/questions/131032/good-resources-to-learn-the-factor-programming-language/131044#131044 3 Answer by David Nehme for Good resources to learn the Factor programming language ? David Nehme 2008-09-25T01:43:36Z 2008-09-25T02:13:03Z <p>To get started, there's a <a href="http://www.youtube.com/watch?v=koRFLwHGS7o" rel="nofollow">screencast</a></p> http://stackoverflow.com/questions/131032/good-resources-to-learn-the-factor-programming-language/141726#141726 4 Answer by Mike Louw for Good resources to learn the Factor programming language ? Mike Louw 2008-09-26T20:22:30Z 2008-09-26T20:22:30Z <p>Begin with these two (old but great) books by Leo Brodie:</p> <ul> <li>Starting Forth</li> <li>Thinking Forth</li> </ul> <p>Both books are available free on the web:</p> <ul> <li>Starting Forth: [<a href="http://home.iae.nl/users/mhx/sf.html" rel="nofollow">http://home.iae.nl/users/mhx/sf.html</a>]</li> <li>Thinking Forth: [<a href="http://thinking-forth.sourceforge.net/" rel="nofollow">http://thinking-forth.sourceforge.net/</a>]</li> </ul> <p>Also check out <a href="http://www.forth.com" rel="nofollow">www.forth.com</a></p> http://stackoverflow.com/questions/131032/good-resources-to-learn-the-factor-programming-language/143142#143142 5 Answer by Samuel Tardieu for Good resources to learn the Factor programming language ? Samuel Tardieu 2008-09-27T06:47:46Z 2008-09-27T06:47:46Z <p>In fact, learning Factor doesn't require to master Forth. Only the basic concepts of Forth are needed to understand stack effects, but Factor's typing system and high-level functional constructs make the programmer use completely different algorithms.</p> <p>So my bet is: do not bother learning Forth if your goal is to learn Factor.</p> <p>(however, learning Forth for its own is a good idea too :-)</p>