BCPL ![]() |
http://www.tuxedo.org/~esr/jargon/html/entry/BCPL.html |
Description: | 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") $) |
Prints "Hello World" onto the
screen. |