Added algol60

This commit is contained in:
Mike Donaghy
2008-07-27 23:27:09 -04:00
parent 9c54c583be
commit 27f3f41b2c

6
a/algol60.algol60 Normal file
View File

@@ -0,0 +1,6 @@
BEGIN
FILE F(KIND=REMOTE);
EBCDIC ARRAY E[0:11];
REPLACE E BY "HELLO WORLD!";
WRITE(F, *, E);
END.