BCPL    hoch http://www.tuxedo.org/~esr/jargon/html/entry/BCPL.html
 
  Beschreibung: BCPL (Basic Combined Programming Language) was developed by Martin Richards in Cambridge in 1967. The language C inherited some of BCPL's features, and in C++ BCPL's line comments (//) were introduced again.


 Hello World   Daniel Lundin
// BCPL 'Hello World' program

GET "LIBHDR"

LET START () BE
$(
    WRITES ("Hello World!*N")
$)               
Gibt "Hello World" auf dem Bildschirm aus.