Dougie,
COBOL runs just fine on the Pi:
Code: Select all
$ sudo apt-get install open-cobol
...
$ cobc --version
cobc (OpenCOBOL) 1.1.0
Copyright (C) 2001-2009 Keisuke Nishida / Roger While
Built Mar 27 2014 21:06:19
Packaged Feb 06 2009 10:30:55 CET
$
$ cat hello.cbl
Identification Division.
Program-ID. sampleCOBOL.
Data Division.
Procedure Division.
Main-Paragraph.
Display "Hello World!"
Stop Run.
$
$ cobc -x -o hello hello.cbl
./hello
Hello World!
$
I will still claim that JavaScript is the most widely used language. Every human being with a browser runs JS nearly every day.
Of course, that all rests on a browser written in C++ and sitting on an OS written in C/C++...
Agreed, Python is disgusting.