2014-06-25 8:23 GMT+02:00, Rugxulo <[email protected]>: > I'm not sure of the exact list of people who can "import" an .LSM into > the FreeDOS Software List, but it's a very very small group. At least, > I've never done it (yet).
Well, it's worthy. See how concise Forth can be, on an example: 1. Fibonacci series in C: http://www.programmingsimplified.com/c-program-generate-fibonacci-series 2. And now the same in Forth: : fibonacci ( max -- ) >r 1 1 begin dup dup . -rot + dup r@ > until r> drop 2drop ; Looks somewhat cryptic? Maybe - but were C programs clear and comprehensible even before you learned C? -- Z. ------------------------------------------------------------------------------ Open source business process management suite built on Java and Eclipse Turn processes into business applications with Bonita BPM Community Edition Quickly connect people, data, and systems into organized workflows Winner of BOSSIE, CODIE, OW2 and Gartner awards http://p.sf.net/sfu/Bonitasoft _______________________________________________ Freedos-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freedos-user
