From 627d6b7551a5b2bcf184c6a786ee87c4a5aa54ce Mon Sep 17 00:00:00 2001 From: Richie Bendall Date: Mon, 30 Mar 2020 16:47:47 +1300 Subject: [PATCH] Fix name Signed-off-by: Richie Bendall --- README.md | 2 +- p/PLI.pl1 | 3 +++ p/hello_world.pl1 | 4 ---- 3 files changed, 4 insertions(+), 5 deletions(-) create mode 100644 p/PLI.pl1 delete mode 100755 p/hello_world.pl1 diff --git a/README.md b/README.md index 7437a438..3fe35480 100755 --- a/README.md +++ b/README.md @@ -393,7 +393,6 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Oraclesql](o%5Coraclesql.sql) * [Orc](o%5COrc.orc) * [Oz](o%5Coz.oz) -* [Hello World](p%5Chello_world.pl1) * [Parenthetic](p%5Cparenthetic.p) * [Parser](p%5Cparser.p) * [Pascal](p%5Cpascal.p) @@ -416,6 +415,7 @@ Meet [FizzBuzz](https://github.com/zenware/FizzBuzz), the evolution of [hello-wo * [Pit](p%5Cpit.pit) * [Pizza](p%5Cpizza.pizza) * [Please Porige Hot](p%5Cplease_porige_hot.pph) +* [Pli](p%5CPLI.pl1) * [Plsql](p%5Cplsql.sql) * [Pluvo](p%5Cpluvo.pvo) * [Polynomial](p%5Cpolynomial.pol) diff --git a/p/PLI.pl1 b/p/PLI.pl1 new file mode 100644 index 00000000..91e2f6b3 --- /dev/null +++ b/p/PLI.pl1 @@ -0,0 +1,3 @@ +Hello2: proc options(main); + put list ('Hello World'); +end Hello2; \ No newline at end of file diff --git a/p/hello_world.pl1 b/p/hello_world.pl1 deleted file mode 100755 index fb855638..00000000 --- a/p/hello_world.pl1 +++ /dev/null @@ -1,4 +0,0 @@ -World: Procedure options(main); - Put List( 'Hello world' ); - - End World;