From 7cceeb65c3a9fdd144b2b550fe8463ceca3c48b6 Mon Sep 17 00:00:00 2001 From: NIshanth Vydana Date: Thu, 27 Oct 2016 12:13:53 -0700 Subject: [PATCH 1/3] Create hello_world.pl1 --- p/hello_world.pl1 | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 p/hello_world.pl1 diff --git a/p/hello_world.pl1 b/p/hello_world.pl1 new file mode 100644 index 00000000..b8cfd575 --- /dev/null +++ b/p/hello_world.pl1 @@ -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; From 7dfe06f2dd9de18db2dd91eafa9b574c8e863591 Mon Sep 17 00:00:00 2001 From: NIshanth Vydana Date: Thu, 27 Oct 2016 12:16:03 -0700 Subject: [PATCH 2/3] 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; From 6dd5bda21a40b3166f5a288056433edf4d5e8bc4 Mon Sep 17 00:00:00 2001 From: NIshanth Vydana Date: Fri, 28 Oct 2016 22:07:21 -0700 Subject: [PATCH 3/3] Create Qbasic.bas --- q/Qbasic.bas | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 q/Qbasic.bas diff --git a/q/Qbasic.bas b/q/Qbasic.bas new file mode 100644 index 00000000..e04cbdc0 --- /dev/null +++ b/q/Qbasic.bas @@ -0,0 +1,2 @@ + +PRINT "hello world"