|
|
|
|
|
by striking
3495 days ago
|
|
Not quite. ALGOL doesn't have curly braces, just BEGIN and END blocks. BEGIN
FILE F (KIND=REMOTE);
EBCDIC ARRAY E [0:11];
REPLACE E BY "HELLO WORLD!";
WHILE TRUE DO
BEGIN
WRITE (F, *, E);
END;
END.
I've heard it said that the languages you mentioned are inspired by C's syntax. |
|