summaryrefslogtreecommitdiff
path: root/PyGan/data/Exemple_jdd_proc
diff options
context:
space:
mode:
authorstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
committerstainer_t <thomas.stainer@oecd-nea.org>2025-09-08 13:48:49 +0200
commit7dfcc480ba1e19bd3232349fc733caef94034292 (patch)
tree03ee104eb8846d5cc1a981d267687a729185d3f3 /PyGan/data/Exemple_jdd_proc
Initial commit from Polytechnique Montreal
Diffstat (limited to 'PyGan/data/Exemple_jdd_proc')
-rw-r--r--PyGan/data/Exemple_jdd_proc/FloatList.c2m14
-rw-r--r--PyGan/data/Exemple_jdd_proc/StringList.c2m14
2 files changed, 28 insertions, 0 deletions
diff --git a/PyGan/data/Exemple_jdd_proc/FloatList.c2m b/PyGan/data/Exemple_jdd_proc/FloatList.c2m
new file mode 100644
index 0000000..35eaf2f
--- /dev/null
+++ b/PyGan/data/Exemple_jdd_proc/FloatList.c2m
@@ -0,0 +1,14 @@
+*----
+* TEST PROCEDURE
+* Creating a LCM LINKED_LIST with 1 float
+*----
+PARAMETER MY_LIST ::
+ ::: LINKED_LIST MY_LIST ; ;
+MODULE UTL: DELETE: END: ;
+
+*--- Defining a list of 1 float ---*
+MY_LIST := UTL: ::
+ CREA 'Float_List' 1 = 3.141592654D0 ;
+
+END: ;
+QUIT "LIST" .
diff --git a/PyGan/data/Exemple_jdd_proc/StringList.c2m b/PyGan/data/Exemple_jdd_proc/StringList.c2m
new file mode 100644
index 0000000..1d7d13b
--- /dev/null
+++ b/PyGan/data/Exemple_jdd_proc/StringList.c2m
@@ -0,0 +1,14 @@
+*----
+* TEST PROCEDURE
+* Creating a LCM LINKED_LIST with 1 character
+*----
+PARAMETER MY_LIST ::
+ ::: LINKED_LIST MY_LIST ; ;
+MODULE UTL: DELETE: END: ;
+
+*--- Defining a list of 1 character ---*
+MY_LIST := UTL: ::
+ CREA 'TEST' 1 = 'A' ;
+
+END: ;
+QUIT "LIST" .