What are some real-world projects done in concatenative languages like Forth, Factor, Joy, etc.?

link|improve this question

76% accept rate
Factor is a pretty great language, but don't even bother if you want to write GUI apps. There are no bindings for any popular GUI toolkits, and the one shipped with Factor is crap. – Rayne Nov 27 '09 at 1:18
feedback

7 Answers

up vote 8 down vote accepted

factorcode.org, concatenative.org and tinyvid.tv are powered by Furnace, a Factor web server and framework.

link|improve this answer
feedback

PostScript is concatenative, and there's obviously a huge number of applications of PostScript. It's just not a general purpose programming language.

link|improve this answer
feedback

There is the somewhat-obsolete but very cool Quartus Forth for Palm which allowed full compiled application development on the Palm device (Forth as a minimalist language works rather well in those circumstances). Their home page lists several Palm apps.

This FIG page has a list of mostly-embedded projects including a reference to the very cool use of Forth by NASA.

I met a guy at an Apple conference in Queensland back in about 1991 who had retailed a road planning application written in MacForth.

Christopher Diggins was talking about his Cat language being used inside Microsoft to help optimise compilers but I don't know if that went anywhere.

I suspect PowerMOPS (the successor to Neon) may elude the definition of concatenative because its big deal is adding object-orientation, which implies instances.

link|improve this answer
Sorry if I gave the wrong impression but Cat was never used at Microsoft. It could be used to help optimize compilers in theory, but I never saw anyone try to do that. – cdiggins May 2 at 13:22
feedback

Take a look at FORTH Inc, They list several projects that they and their customers did, using their FORTH.

link|improve this answer
feedback

As Greg wrote, postscript is the mammoth example.

Concatenative languages pop up everywhere, quite naturally, because of the trivial nature of the language runtime. It's a favourite for many firmwares: I first encountered Forth "in the flesh" in the bootloader for a Sun Sparcstation. It powers the firmware for the OLPC.

Ocaml's parent, Caml was based on realising the semantics of functional programming as the Categorical Abstract Machine (the CAM in Caml).

Bibtex uses a concatenative language to compile style files.

link|improve this answer
How is CAM connected with concatenative languages? – ygrek Dec 29 '09 at 8:26
Take a look at ropas.snu.ac.kr/~pronto/seminar/20061027.pdf It's not quite trivial to realise the combinators of the CAM as a Forth dictionary, but I think it is doable, and certainly the spirit of the operational semantics is concatenative. – Charles Stewart Dec 29 '09 at 16:30
feedback

Part of the firmware on Macs (at least in the older PowerPC models) was written in Forth.

See: http://osxbook.com/book/bonus/ancient/whatismacosx/arch%5Fboot.html

link|improve this answer
feedback

Eserv and nncron are written in SP-Forth.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.