From 7dfe06f2dd9de18db2dd91eafa9b574c8e863591 Mon Sep 17 00:00:00 2001 From: NIshanth Vydana Date: Thu, 27 Oct 2016 12:16:03 -0700 Subject: [PATCH] Update hello_world.pl1 --- p/hello_world.pl1 | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/p/hello_world.pl1 b/p/hello_world.pl1 index b8cfd575..fb855638 100644 --- a/p/hello_world.pl1 +++ b/p/hello_world.pl1 @@ -1,10 +1,4 @@ -HELLO: PROCEDURE OPTIONS (MAIN); +World: Procedure options(main); + Put List( 'Hello world' ); - /* A PROGRAM TO OUTPUT HELLO WORLD */ - FLAG = 0; - -LOOP: DO WHILE (FLAG = 0); - PUT SKIP DATA('HELLO WORLD!'); - END LOOP; - -END HELLO; + End World;