summaryrefslogtreecommitdiffhomepage
path: root/ldpl.html.markdown
diff options
context:
space:
mode:
authorAkshita Dixit <436_bt19@iiitkalyani.ac.in>2022-11-13 14:26:32 +0530
committerAkshita Dixit <436_bt19@iiitkalyani.ac.in>2022-11-13 14:26:32 +0530
commit6384e5116639993d1cc449749e5e0df4ba736fa8 (patch)
tree2182e20675c40ea115d981c64db7ffbe3b8adead /ldpl.html.markdown
parent5a9b474a635a1b0b12908f8673b6f4e1e67d0812 (diff)
parent2d59543e717f46b7defcb4b8964997f1569f78a3 (diff)
Merge branch 'master' of https://github.com/adambard/learnxinyminutes-docs into docker-docs
Diffstat (limited to 'ldpl.html.markdown')
-rw-r--r--ldpl.html.markdown7
1 files changed, 4 insertions, 3 deletions
diff --git a/ldpl.html.markdown b/ldpl.html.markdown
index 86603d94..449c8670 100644
--- a/ldpl.html.markdown
+++ b/ldpl.html.markdown
@@ -3,6 +3,7 @@ language: LDPL
filename: learnLDPL.ldpl
contributors:
- ["Martín del Río", "https://github.com/lartu"]
+ - ["John Paul Wohlscheid", "https://github.com/JohnBlood"]
---
**LDPL** is a powerful, C++ transpiled, open-source programming language designed
@@ -68,7 +69,7 @@ else if myMap:"someIndex" is not equal to 45 then
else
display "Else!" crlf
end if
-# Valid LDPL comparisson operators are
+# Valid LDPL comparison operators are
# - IS EQUAL TO
# - IS NOT EQUAL TO
# - IS LESS THAN
@@ -123,8 +124,8 @@ get random in myNumber # get a random number between 0 and 1
# files, are divided in sections. The sections found in sub-procedures are
# the PARAMETERS section, the LOCAL DATA section and the PROCEDURE section.
# All sections except the PROCEDURE section can be skipped if they aren't
-# used. If no PARAMTERS nor LOCAL DATA sections are used, the PROCEDURE
-# keyword may be omited.
+# used. If no PARAMETERS nor LOCAL DATA sections are used, the PROCEDURE
+# keyword may be omitted.
sub myFunction
parameters:
a is number # LDPL is pass by reference