Create hello_world.pl1

This commit is contained in:
NIshanth Vydana 2016-10-27 12:13:53 -07:00 committed by GitHub
parent 3bab02464b
commit 7cceeb65c3

10
p/hello_world.pl1 Normal file
View File

@ -0,0 +1,10 @@
HELLO: PROCEDURE OPTIONS (MAIN);
/* A PROGRAM TO OUTPUT HELLO WORLD */
FLAG = 0;
LOOP: DO WHILE (FLAG = 0);
PUT SKIP DATA('HELLO WORLD!');
END LOOP;
END HELLO;